Skip to content

Commit ee39d6c

Browse files
committed
Fix argument mismatch
1 parent dbc7d66 commit ee39d6c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/models/thread.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,11 @@ export class Thread extends TypedEventEmitter<EmittedEvents, EventHandlerMap> {
172172
this.timelineSet.addEventToTimeline(
173173
event,
174174
this.liveTimeline,
175-
toStartOfTimeline,
176-
false,
177-
this.roomState,
175+
{
176+
toStartOfTimeline,
177+
fromCache: false,
178+
roomState: this.roomState,
179+
},
178180
);
179181
}
180182
}

0 commit comments

Comments
 (0)