From 3d5b69f60ab77ebe3b778cdcd546759946cbc5b2 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 21 Aug 2020 18:14:57 +0200 Subject: [PATCH] remove obsolete comment --- src/matrix/room/RoomSummary.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/matrix/room/RoomSummary.js b/src/matrix/room/RoomSummary.js index f9848158..e924f6fe 100644 --- a/src/matrix/room/RoomSummary.js +++ b/src/matrix/room/RoomSummary.js @@ -236,12 +236,6 @@ export class RoomSummary { isInitialSync, isTimelineOpen, this._ownUserId); if (data !== this._data) { - // need to think here how we want to persist - // things like unread status (as read marker, or unread count)? - // we could very well load additional things in the load method - // ... the trade-off is between constantly writing the summary - // on every sync, or doing a bit of extra reading on load - // and have in-memory only variables for visualization txn.roomSummary.set(data.serialize()); return data; }