Skip to content

Commit

Permalink
New syncs mustn't be set to paused
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheLarchier committed Nov 26, 2024
1 parent a475db5 commit 0cd63de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyncengine/requests/serverrequests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ ExitCode ServerRequests::addSync(int driveDbId, const QString &localFolderPath,
sync.setLocalPath(QStr2Path(localFolderPath));
sync.setTargetPath(QStr2Path(serverFolderPath));
sync.setTargetNodeId(serverFolderNodeId.toStdString());
sync.setPaused(true);
sync.setPaused(false);

// Check vfs support
QString fsName(KDC::CommonUtility::fileSystemName(SyncName2QStr(sync.localPath().native())));
Expand Down

0 comments on commit 0cd63de

Please sign in to comment.