From a93b1af0470408ee6f62b7858d34882cce85e5b8 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 27 May 2021 09:16:25 +0200 Subject: [PATCH] ensure these don't fail on a gap entry --- src/matrix/room/timeline/entries/FragmentBoundaryEntry.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/matrix/room/timeline/entries/FragmentBoundaryEntry.js b/src/matrix/room/timeline/entries/FragmentBoundaryEntry.js index f43f273b..081d18a2 100644 --- a/src/matrix/room/timeline/entries/FragmentBoundaryEntry.js +++ b/src/matrix/room/timeline/entries/FragmentBoundaryEntry.js @@ -133,4 +133,8 @@ export class FragmentBoundaryEntry extends BaseEntry { createNeighbourEntry(neighbour) { return new FragmentBoundaryEntry(neighbour, !this._isFragmentStart, this._fragmentIdComparer); } + + transferLocalEchoState() {} + addLocalRelation() {} + removeLocalRelation() {} }