From 66ece5251e1aec3a843520777a0ffeb45e097148 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 9 Aug 2021 21:02:00 -0500 Subject: [PATCH] Nuke LoadGap --- app/soapbox/reducers/timelines.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/soapbox/reducers/timelines.js b/app/soapbox/reducers/timelines.js index f6ff72b5f..144923849 100644 --- a/app/soapbox/reducers/timelines.js +++ b/app/soapbox/reducers/timelines.js @@ -215,7 +215,9 @@ const timelineDisconnect = (state, timelineId) => { const items = timeline.get('items', ImmutableOrderedSet()); if (items.isEmpty()) return; - timeline.set('items', addStatusId(items, null)); + // This is causing problems. Disable for now. + // https://gitlab.com/soapbox-pub/soapbox-fe/-/issues/716 + // timeline.set('items', addStatusId(items, null)); })); };