From 7968e6f63200ae503a1e82558688db4b3eaa2a13 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 11 Jun 2026 09:57:33 +0300 Subject: [PATCH] update single-convo cache on firehose mute/unmute events Co-Authored-By: Claude Fable 5 --- src/state/queries/messages/list-conversations.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state/queries/messages/list-conversations.tsx b/src/state/queries/messages/list-conversations.tsx index d6d34f34dd..09410142bb 100644 --- a/src/state/queries/messages/list-conversations.tsx +++ b/src/state/queries/messages/list-conversations.tsx @@ -510,13 +510,13 @@ export function ListConvosProviderInner({ }, ) } else if (ChatBskyConvoDefs.isLogMuteConvo(log)) { - updateConvoInAllLists(log.convoId, convo => ({ + mutateConvoView(log.convoId, convo => ({ ...convo, muted: true, rev: log.rev, })) } else if (ChatBskyConvoDefs.isLogUnmuteConvo(log)) { - updateConvoInAllLists(log.convoId, convo => ({ + mutateConvoView(log.convoId, convo => ({ ...convo, muted: false, rev: log.rev,