diff --git a/src/storages/UserStore.ts b/src/storages/UserStore.ts index b13df42..1c7aaee 100644 --- a/src/storages/UserStore.ts +++ b/src/storages/UserStore.ts @@ -30,11 +30,6 @@ export class UserStore implements NStore { }); } - async isMuted(pubkey: string): Promise { - const mutedPubkeys = await this.getMutedPubkeys(); - return mutedPubkeys.has(pubkey); - } - private async getMuteList(): Promise { const [muteList] = await this.store.query([{ authors: [this.pubkey], kinds: [10000], limit: 1 }]); return muteList;