update single-convo cache on firehose mute/unmute events

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Samuel Newman
2026-06-11 09:57:33 +03:00
parent 0187a49534
commit 7968e6f632
@@ -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,