Skip to content

Commit

Permalink
FTT有効時に想定の真逆の挙動をとるのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
1673beta committed Jul 9, 2024
1 parent 1d926ab commit bca223f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/FanoutTimelineEndpointService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class FanoutTimelineEndpointService {

if (ps.withoutBots) {
const parentFilter = filter;
filter = (note) => (note.user ? note.user.isBot : true) && parentFilter(note);
filter = (note) => (!note.user || !note.user.isBot) && parentFilter(note);
}

if (ps.me) {
Expand Down

0 comments on commit bca223f

Please sign in to comment.