Explorar el Código

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 hace 3 años
padre
commit
65e0b9ea2f
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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);
 }