Browse Source

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 years ago
parent
commit
65e0b9ea2f
1 changed files with 2 additions and 0 deletions
  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);
 }