Skip to content

Commit

Permalink
fix: muted user's notes are not removed in featured
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayamame-beans authored Nov 28, 2023
1 parent 33f6c53 commit 5434207
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
]);

notes = notes.filter(note => {
if (isUserRelated(note, userIdsWhoMeMuting, true)) return false;
if (isUserRelated(note, userIdsWhoMeMuting)) return false;

return true;
});
Expand Down

0 comments on commit 5434207

Please sign in to comment.