diff --git a/cmd/bisync/checkfn.go b/cmd/bisync/checkfn.go index 6940abee9..bb3f91288 100644 --- a/cmd/bisync/checkfn.go +++ b/cmd/bisync/checkfn.go @@ -130,7 +130,7 @@ func DownloadCheckFn(ctx context.Context, dst, src fs.Object) (equal bool, noHas if err != nil { return true, true, fmt.Errorf("failed to download: %w", err) } - return equal, false, nil + return !equal, false, nil } // check potential conflicts (to avoid renaming if already identical)