summary refs log tree commit diff
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-04-07 17:49:44 +0300
committerGitHub <noreply@github.com>2022-04-07 17:49:44 +0300
commit7bb42cb1ff51b53a0183e6801f36062acbf1d8e5 (patch)
tree4916e095dcc7e350465b5fb4ab0a3bc5478c99c3
parentFix 404 URL (diff)
downloadserver-7bb42cb1ff51b53a0183e6801f36062acbf1d8e5.tar.xz
with public read receipts explicitly stored, no need to store manual flag of the read mark
-rw-r--r--util/src/entities/ReadState.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/src/entities/ReadState.ts b/util/src/entities/ReadState.ts

index e6d73105..b915573b 100644 --- a/util/src/entities/ReadState.ts +++ b/util/src/entities/ReadState.ts
@@ -49,6 +49,7 @@ export class ReadState extends BaseClass { @Column({ nullable: true }) mention_count: number; - @Column({ nullable: true }) + // @Column({ nullable: true }) + // TODO: derive this from (last_message_id=notifications_cursor=public_ack)=true manual: boolean; }