From e3328f0fefcd308c780b1a18d17ee512040a681a Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Sun, 12 May 2019 20:26:32 +0200 Subject: [PATCH] add fragments store name --- src/matrix/storage/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/storage/common.js b/src/matrix/storage/common.js index 0280549b..d1050e5a 100644 --- a/src/matrix/storage/common.js +++ b/src/matrix/storage/common.js @@ -1,4 +1,4 @@ -export const STORE_NAMES = Object.freeze(["session", "roomState", "roomSummary", "roomTimeline"]); +export const STORE_NAMES = Object.freeze(["session", "roomState", "roomSummary", "timelineEvents", "timelineFragments"]); export const STORE_MAP = Object.freeze(STORE_NAMES.reduce((nameMap, name) => { nameMap[name] = name;