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,