Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih committed Dec 28, 2024
1 parent 693491d commit d57d601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/entities/NoteEntityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);
}

Expand Down

0 comments on commit d57d601

Please sign in to comment.