From 3acf819b42a078d77d871052e4bef82a790a71eb Mon Sep 17 00:00:00 2001 From: Federico Justus Denkena Date: Thu, 10 Sep 2026 00:04:03 +0200 Subject: [PATCH] bisync: default maxDelete 10 --- lib/rclone/constants.ts | 2 +- src/pages/Bisync.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rclone/constants.ts b/lib/rclone/constants.ts index 199e404..2323c4d 100644 --- a/lib/rclone/constants.ts +++ b/lib/rclone/constants.ts @@ -6,7 +6,7 @@ export const BISYNC_SAFETY_DEFAULTS = { resilient: true, slowHashSyncOnly: true, conflictResolve: 'none', - maxDelete: 50, + maxDelete: 10, compare: 'size,modtime,checksum', } as const diff --git a/src/pages/Bisync.tsx b/src/pages/Bisync.tsx index 4166eaf..d5801e2 100644 --- a/src/pages/Bisync.tsx +++ b/src/pages/Bisync.tsx @@ -38,7 +38,7 @@ Here's a quick guide to using the Bisync command: Use the path selectors at the top to choose Path1 and Path2. Both paths will be kept in sync with each other — there is no "source" or "destination", changes flow both ways. 2. CONFIGURE OPTIONS (Optional) -Expand the accordion sections to customize your bisync operation. Safety defaults are on: checkAccess, deltaList, recover, resilient, conflictResolve=none, maxDelete=50, compare=size,modtime,checksum, slowHashSyncOnly. Turn them off only if you understand the loss path. +Expand the accordion sections to customize your bisync operation. Safety defaults are on: checkAccess, deltaList, recover, resilient, conflictResolve=none, maxDelete=10, compare=size,modtime,checksum, slowHashSyncOnly. Turn them off only if you understand the loss path. • resync — Required for the first run, or to reset bisync after an error. This makes both paths contain a matching superset of all files by copying Path2 to Path1, then Path1 to Path2. Only use resync when starting fresh, after changing filter settings, or recovering from an error — using it routinely would prevent deletions from syncing (deleted files would keep reappearing from the other side).