Skip to content

Commit

Permalink
Merge pull request #106 from niri-la/fix-featured-usermute
Browse files Browse the repository at this point in the history
fix: muted user's notes are not removed in featured
  • Loading branch information
anatawa12 authored Nov 28, 2023
2 parents 33f6c53 + 418b614 commit 223b4eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
## 2023.x.x (unreleased)

### General
- Fix: 全体ハイライトでユーザーミュートが正常に機能しない問題

### Client

Expand Down
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 223b4eb

Please sign in to comment.