From 9f74098175e2619bb90ee7154e0744952cc44d02 Mon Sep 17 00:00:00 2001 From: Paul Fresquet Date: Mon, 5 Jan 2026 16:53:20 +0100 Subject: [PATCH] Add legacy ActionOperatorTypes values for compatibility --- .../Business/Actions/ActionOperatorTypes.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ByteSync.Common/Business/Actions/ActionOperatorTypes.cs b/src/ByteSync.Common/Business/Actions/ActionOperatorTypes.cs index 6f2e6f14..715804e4 100644 --- a/src/ByteSync.Common/Business/Actions/ActionOperatorTypes.cs +++ b/src/ByteSync.Common/Business/Actions/ActionOperatorTypes.cs @@ -3,6 +3,13 @@ public enum ActionOperatorTypes { // File only + + // Keep for backward compatibility + // Delete when minimal supported version >= 2026.1 + SynchronizeContentOnly = 1, + SynchronizeDate = 2, + SynchronizeContentAndDate = 3, + CopyContentOnly = 1, CopyDatesOnly = 2, Copy = 3,