diff --git a/kDriveCore/Data/UploadQueue/Queue/UploadQueue+Notifications.swift b/kDriveCore/Data/UploadQueue/Queue/UploadQueue+Notifications.swift index 51451cbed..3ccc113c7 100644 --- a/kDriveCore/Data/UploadQueue/Queue/UploadQueue+Notifications.swift +++ b/kDriveCore/Data/UploadQueue/Queue/UploadQueue+Notifications.swift @@ -42,6 +42,11 @@ extension UploadQueue: UploadNotifiable { public func sendPausedNotificationIfNeeded() { Log.uploadQueue("sendPausedNotificationIfNeeded") + guard appContextService.context != .fileProviderExtension else { + Log.uploadQueue("\(#function) disabled in FileProviderExtension", level: .error) + return + } + serialQueue.async { [weak self] in guard let self else { return } if !pausedNotificationSent {