From bd034ac1a8430fee0076e94d9ae5eb48454cf2c5 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 11 Jun 2026 19:08:28 +0300 Subject: [PATCH] [Chat] Update single-convo cache on firehose mute/unmute events (#10865) 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,