From 045fc4607d270668463400ba4dbfb9e840aa35e4 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 3 Dec 2024 10:00:13 -0700 Subject: [PATCH] fix --- src/classes/notifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/notifications.ts b/src/classes/notifications.ts index 344f1c9..cfd0c59 100644 --- a/src/classes/notifications.ts +++ b/src/classes/notifications.ts @@ -92,7 +92,7 @@ export default class AccountNotifications { } } - throttleUpdateTimeline = _throttle(this.updateTimeline.bind(this), 10); + throttleUpdateTimeline = _throttle(this.updateTimeline.bind(this), 1); updateTimeline() { const muteList = replaceableEventsService.getEvent(MUTE_LIST_KIND, this.pubkey).value; const mutedPubkeys = muteList ? getPubkeysFromList(muteList).map((p) => p.pubkey) : [];