diff --git a/src/storages/UserStore.ts b/src/storages/UserStore.ts index 615e2afd..78c3d336 100644 --- a/src/storages/UserStore.ts +++ b/src/storages/UserStore.ts @@ -29,7 +29,7 @@ export class UserStore implements NStore { const mutedPubkeys = getTagSet(mutedPubkeysEvent.tags, 'p'); return allEvents.filter((event) => { - mutedPubkeys.has(event.pubkey) === false; + return mutedPubkeys.has(event.pubkey) === false; }); }