From 5953cdf0cc366bdc29d6927c4648fbb09ad71d08 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 6 Sep 2021 13:10:36 +0200 Subject: [PATCH] turns out we do write these --- src/matrix/room/timeline/EventKey.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/matrix/room/timeline/EventKey.ts b/src/matrix/room/timeline/EventKey.ts index eb8a7724..8775df26 100644 --- a/src/matrix/room/timeline/EventKey.ts +++ b/src/matrix/room/timeline/EventKey.ts @@ -20,8 +20,8 @@ import {Direction} from "./Direction"; // key for events in the timelineEvents store export class EventKey { constructor( - public readonly fragmentId: number, - public readonly eventIndex: number + public fragmentId: number, + public eventIndex: number ) { }