From e3baf932f3fd1256d7bc62b8c2b059f1f39da0bc Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 27 Sep 2025 19:29:36 +0000 Subject: [PATCH] reflinks are non-e2d safe --- copyparty/authsrv.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/copyparty/authsrv.py b/copyparty/authsrv.py index 362d1837..7f3097b4 100644 --- a/copyparty/authsrv.py +++ b/copyparty/authsrv.py @@ -2726,7 +2726,11 @@ class AuthSrv(object): if "dedup" in zv.flags: have_dedup = True - if "e2d" not in zv.flags and "hardlink" not in zv.flags: + if ( + "e2d" not in zv.flags + and "hardlink" not in zv.flags + and "reflink" not in zv.flags + ): unsafe_dedup.append("/" + zv.vpath) t += "\n"