[Chat] Update single-convo cache on firehose mute/unmute events (#10865)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Samuel Newman
2026-06-11 19:08:28 +03:00
committed by GitHub
parent ba72110a12
commit bd034ac1a8
@@ -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,