From 20590641bc2c736fe5886234f6f355cc358428f7 Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 4 Nov 2021 13:42:46 +0000 Subject: [PATCH] fix(sidebar): handle channel as muted if 'none' --- src/components/navigation/left/ServerSidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/navigation/left/ServerSidebar.tsx b/src/components/navigation/left/ServerSidebar.tsx index a28c54f4..97bdc59c 100644 --- a/src/components/navigation/left/ServerSidebar.tsx +++ b/src/components/navigation/left/ServerSidebar.tsx @@ -95,7 +95,7 @@ const ServerSidebar = observer((props: Props) => { if (!entry) return; const active = channel?._id === entry._id; - const muted = props.notifications[id] === "muted"; + const muted = props.notifications[id] === "none"; return (