From 75a37f3f7c68ba240551da3569a9b1fc6e1dd528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Sun, 30 Nov 2025 12:47:49 +0100 Subject: [PATCH] fix: Hide no fcm warning after dismissed --- lib/utils/background_push.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/background_push.dart b/lib/utils/background_push.dart index f38f0dd26..31a4bcd90 100644 --- a/lib/utils/background_push.dart +++ b/lib/utils/background_push.dart @@ -340,7 +340,7 @@ class BackgroundPush { if (matrix == null) { return; } - if (!AppSettings.showNoGoogle.value) { + if (AppSettings.showNoGoogle.value) { return; } await loadLocale();