fix(UserStore): add missing return keyword in array filter
This commit is contained in:
parent
a7912e0800
commit
ab7a60c6de
|
@ -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;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue