Skip to content

Commit bd034ac

Browse files
mozziusclaude
andauthored
[Chat] Update single-convo cache on firehose mute/unmute events (bluesky-social#10865)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent ba72110 commit bd034ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/state/queries/messages/list-conversations.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,13 +510,13 @@ export function ListConvosProviderInner({
510510
},
511511
)
512512
} else if (ChatBskyConvoDefs.isLogMuteConvo(log)) {
513-
updateConvoInAllLists(log.convoId, convo => ({
513+
mutateConvoView(log.convoId, convo => ({
514514
...convo,
515515
muted: true,
516516
rev: log.rev,
517517
}))
518518
} else if (ChatBskyConvoDefs.isLogUnmuteConvo(log)) {
519-
updateConvoInAllLists(log.convoId, convo => ({
519+
mutateConvoView(log.convoId, convo => ({
520520
...convo,
521521
muted: false,
522522
rev: log.rev,

0 commit comments

Comments
 (0)