Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarodev <modermatt@tuta.io>2021-05-16 10:12:00 +0300
committermarodev <modermatt@tuta.io>2021-05-16 10:12:00 +0300
commita156c511da185fbf3bfd7fc58276f7ded7e54074 (patch)
tree0983710211d37943327c963f137990cd9eb42b5d /Duplicati/Library/Backend/Rclone
parente87688d9d364abf02db0320a497cfad0bbc49e85 (diff)
Reorder parameters of previously wrongly refactored string interpolation
Diffstat (limited to 'Duplicati/Library/Backend/Rclone')
-rw-r--r--Duplicati/Library/Backend/Rclone/Rclone.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Library/Backend/Rclone/Rclone.cs b/Duplicati/Library/Backend/Rclone/Rclone.cs
index 024d7e648..97804dd58 100644
--- a/Duplicati/Library/Backend/Rclone/Rclone.cs
+++ b/Duplicati/Library/Backend/Rclone/Rclone.cs
@@ -249,7 +249,7 @@ namespace Duplicati.Library.Backend
{
try
{
- RcloneCommandExecuter(rclone_executable, $"copyto {local_repo}:{filename} {remote_repo}:{Path.Combine(this.remote_path, remotename)}", CancellationToken.None).Await();
+ RcloneCommandExecuter(rclone_executable, $"copyto {remote_repo}:{Path.Combine(this.remote_path, remotename)} {local_repo}:{filename}", CancellationToken.None).Await();
}
catch (FolderMissingException ex) {
throw new FileMissingException(ex);