forked from FoundKeyGang/FoundKey
ユーザー情報のhasUnreadChannelが常にfalseになってしまっているのを修正 (#7938)
This commit is contained in:
parent
303c5abfb4
commit
9236a8fd6c
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ export class UserRepository extends Repository<User> {
|
|||
|
||||
const unread = channels.length > 0 ? await NoteUnreads.findOne({
|
||||
userId: userId,
|
||||
noteChannelId: In(channels.map(x => x.id)),
|
||||
noteChannelId: In(channels.map(x => x.followeeId)),
|
||||
}) : null;
|
||||
|
||||
return unread != null;
|
||||
|
|
Loading…
Reference in a new issue