Revert an unintended change

pull/1061/head^2
Morgan Pretty 2 weeks ago
parent f8863a12a1
commit 990e63db53

@ -381,7 +381,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
// Ensure we haven't timed out yet
guard timer.isCancelled == false else { return }
/// Update the app badge in case the unread count changed
// Immediately cancel the timer to prevent the timeout being triggered
timer.cancel()
// Update the app badge in case the unread count changed
if
let unreadCount: Int = dependencies[singleton: .storage].read({ db in
try Interaction.fetchAppBadgeUnreadCount(db, using: dependencies)

Loading…
Cancel
Save