diff --git a/Session/Notifications/AppNotifications.swift b/Session/Notifications/AppNotifications.swift index 32aee5555..ac5f8ebf1 100644 --- a/Session/Notifications/AppNotifications.swift +++ b/Session/Notifications/AppNotifications.swift @@ -269,7 +269,9 @@ public class NotificationPresenter: NSObject, NotificationsProtocol { @objc public func cancelNotification(_ identifier: String) { - self.adaptee.cancelNotification(identifier: identifier) + DispatchQueue.main.async { + self.adaptee.cancelNotification(identifier: identifier) + } } @objc