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;