fix archived room summary key path now the summary is nested

This commit is contained in:
Bruno Windels 2021-05-11 13:01:19 +02:00
parent 99d5467ad1
commit 2087059c0b

View file

@ -113,5 +113,5 @@ function createInviteStore(db) {
// v8
function createArchivedRoomSummaryStore(db) {
db.createObjectStore("archivedRoomSummary", {keyPath: "roomId"});
db.createObjectStore("archivedRoomSummary", {keyPath: "summary.roomId"});
}