From 5280792cd7e69f15dd57e8cd68bc791a96b7796d Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 21 Oct 2023 13:09:37 +0000 Subject: [PATCH] list existing tags even if tagscanning is disabled --- copyparty/authsrv.py | 6 +++++- copyparty/cfg.py | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/copyparty/authsrv.py b/copyparty/authsrv.py index 58ade428..40d89123 100644 --- a/copyparty/authsrv.py +++ b/copyparty/authsrv.py @@ -1541,7 +1541,11 @@ class AuthSrv(object): if vol.flags.get(grp, False): continue - vol.flags = {k: v for k, v in vol.flags.items() if not k.startswith(rm)} + vol.flags = { + k: v + for k, v in vol.flags.items() + if not k.startswith(rm) or k == "mte" + } for grp, rm in [["d2v", "e2v"]]: if not vol.flags.get(grp, False): diff --git a/copyparty/cfg.py b/copyparty/cfg.py index 9f73b9be..81dd6a2c 100644 --- a/copyparty/cfg.py +++ b/copyparty/cfg.py @@ -13,6 +13,11 @@ def vf_bmap() -> dict[str, str]: "no_dedup": "copydupes", "no_dupe": "nodupe", "no_forget": "noforget", + "no_robots": "norobots", + "no_thumb": "dthumb", + "no_vthumb": "dvthumb", + "no_athumb": "dathumb", + "re_maxage": "scan", "th_no_crop": "nocrop", "dav_auth": "davauth", "dav_rt": "davrt",