From: Claudio Cambra Date: Sat, 18 Mar 2023 19:11:36 +0000 (+0100) Subject: Make sure to include new metadatas in folders to scan for changes in recursive scan... X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~10^2~55^2~31 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=27a177ab351bc981280a3f7bef8a9f8aad64ae8d;p=nextcloud-desktop.git Make sure to include new metadatas in folders to scan for changes in recursive scan of NextcloudSyncEngine Signed-off-by: Claudio Cambra --- diff --git a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/NextcloudSyncEngine.swift b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/NextcloudSyncEngine.swift index 546221d3f..11eae0bbd 100644 --- a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/NextcloudSyncEngine.swift +++ b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/NextcloudSyncEngine.swift @@ -174,7 +174,7 @@ class NextcloudSyncEngine : NSObject { var candidateMetadatas: [NextcloudItemMetadataTable] if scanChangesOnly { - candidateMetadatas = allUpdatedMetadatas + candidateMetadatas = allUpdatedMetadatas + allNewMetadatas } else { candidateMetadatas = allMetadatas }