From 9711bbfdee3e8297bac4e65b362bdd418a3d99a6 Mon Sep 17 00:00:00 2001 From: Jyrki Gadinger Date: Tue, 19 Aug 2025 10:33:41 +0200 Subject: [PATCH] fix(FileProviderExt): do not report syncing state when trying to delete trash items Trying to delete items from the trash with the "Allow deletion of items in Trash" setting unticked would previously result in the sync state being stuck in the "Syncing" state. Signed-off-by: Jyrki Gadinger --- .../FileProviderExt/FileProviderExtension.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift index 5451190ee2..9869f02f0b 100644 --- a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift +++ b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift @@ -478,6 +478,7 @@ import OSLog item: \(item.filename, privacy: .public) """ ) + removeSyncAction(actionId) completionHandler(NSError.fileProviderErrorForRejectedDeletion(of: item)) return }