Skip to content
Snippets Groups Projects
Commit 66940d6c authored by syuilo's avatar syuilo
Browse files

fix(backend): channels/timelineでミュートが効かない問題を修正

parent 57b794ed
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
let timeline = await query.getMany();
timeline = timeline.filter(note => {
if (me && isUserRelated(note, userIdsWhoMeMuting, true)) return false;
if (me && isUserRelated(note, userIdsWhoMeMuting)) return false;
return true;
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment