From 3d3503498ab2b0a33112a7f7ac39fe40609d9b89 Mon Sep 17 00:00:00 2001 From: JRoberts <8711996+jr-simplex@users.noreply.github.com> Date: Mon, 10 Oct 2022 17:35:28 +0400 Subject: [PATCH] ios: fix muted notification (#1192) --- apps/ios/SimpleXChat/ChatTypes.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ios/SimpleXChat/ChatTypes.swift b/apps/ios/SimpleXChat/ChatTypes.swift index 0b9ab6f417..40a1b69672 100644 --- a/apps/ios/SimpleXChat/ChatTypes.swift +++ b/apps/ios/SimpleXChat/ChatTypes.swift @@ -915,7 +915,7 @@ public struct ChatItem: Identifiable, Decodable { case .memberDeleted: return false } case .sndGroupEvent: return true - default: return true + default: return false } }