From 9ed91f2eeba946a310db53bf4d0a11befcdb8b7e Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Mon, 24 Mar 2025 09:52:47 +1100 Subject: [PATCH] Update the badge icon number on the main thread --- Session/Meta/AppDelegate.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Session/Meta/AppDelegate.swift b/Session/Meta/AppDelegate.swift index 25b860eee..f677ca9fb 100644 --- a/Session/Meta/AppDelegate.swift +++ b/Session/Meta/AppDelegate.swift @@ -390,9 +390,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD let unreadCount: Int = dependencies[singleton: .storage] .read { db in try Interaction.fetchAppBadgeUnreadCount(db, using: dependencies) } .defaulting(to: 0) - UIApplication.shared.applicationIconBadgeNumber = unreadCount + + DispatchQueue.main.async(using: dependencies) { + UIApplication.shared.applicationIconBadgeNumber = unreadCount + } } + // If we are still running in the background then suspend the network & database if dependencies[singleton: .appContext].isInBackground { dependencies.mutate(cache: .libSessionNetwork) { $0.suspendNetworkAccess() } dependencies[singleton: .storage].suspendDatabaseAccess()