This commit is contained in:
kakkokari-gtyih 2024-12-28 18:37:54 +09:00
parent 693491d8f1
commit d57d601af4
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ export class NoteEntityService implements OnModuleInit {
(note.visibility === 'public' || note.visibility === 'home') &&
note.user?.makeNotesFollowersOnlyBefore == null &&
note.user?.makeNotesHiddenBefore == null &&
(note.user?.requireSigninToViewContents == false || note.user?.requireSigninToViewContents == null)
(note.user?.requireSigninToViewContents === false || note.user?.requireSigninToViewContents == null)
);
}