Ver código fonte

Merge pull request #5152 from nextcloud/bugfix/sync-now-paused-folder

Ensure forcing a folder to be synced unpauses syncing on said folder
Claudio Cambra 3 anos atrás
pai
commit
65e0b9ea2f
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      src/gui/folderman.cpp

+ 2 - 0
src/gui/folderman.cpp

@@ -616,6 +616,8 @@ void FolderMan::forceSyncForFolder(Folder *folder)
     }
 
     folder->slotWipeErrorBlacklist(); // issue #6757
+    folder->setSyncPaused(false);
+
     // Insert the selected folder at the front of the queue
     scheduleFolderNext(folder);
 }