From 2087059c0ba59c88695e54e529c923bcb887d0eb Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 11 May 2021 13:01:19 +0200 Subject: [PATCH] fix archived room summary key path now the summary is nested --- src/matrix/storage/idb/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/storage/idb/schema.js b/src/matrix/storage/idb/schema.js index f0c052ea..aeb85a4b 100644 --- a/src/matrix/storage/idb/schema.js +++ b/src/matrix/storage/idb/schema.js @@ -113,5 +113,5 @@ function createInviteStore(db) { // v8 function createArchivedRoomSummaryStore(db) { - db.createObjectStore("archivedRoomSummary", {keyPath: "roomId"}); + db.createObjectStore("archivedRoomSummary", {keyPath: "summary.roomId"}); } \ No newline at end of file