diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-04-07 17:49:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 17:49:44 +0300 |
commit | f8bb47508659a58faa222ef42fd61f64016f94d1 (patch) | |
tree | 65ee9304ebdb2f2e893afd8a70331d4512737d8b | |
parent | Fix 404 URL (diff) | |
download | server-f8bb47508659a58faa222ef42fd61f64016f94d1.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.ts | 3 |
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; } |