Merge pull request #4038 from element-hq/toger5/fix-logging-indexDB

Fix Logging indexDB EC/EW collision
This commit is contained in:
Timo
2026-06-12 15:29:33 +08:00
committed by GitHub

View File

@@ -149,7 +149,7 @@ class IndexedDBLogStore {
* @return Resolves when the store is ready.
*/
public async connect(): Promise<void> {
const req = this.indexedDB.open("logs");
const req = this.indexedDB.open("logs-element-call");
return new Promise((resolve, reject) => {
req.onsuccess = (): void => {
this.db = req.result;