fix: 非ログイン状態でお知らせの読み込みができない問題の修正 (#131)

This commit is contained in:
まっちゃとーにゅ 2023-08-01 18:59:01 +09:00 committed by GitHub
parent fce8bc1e7e
commit 233d967b82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
query.orWhere('announcement."userId" = :userId', { userId: me.id }); query.orWhere('announcement."userId" = :userId', { userId: me.id });
} }
} else { } else {
query.select([
'announcement.*',
'FALSE as "isRead"',
]);
query.where('announcement."userId" IS NULL'); query.where('announcement."userId" IS NULL');
} }