mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -06:00
list existing tags even if tagscanning is disabled
This commit is contained in:
parent
2529aa151d
commit
5280792cd7
|
@ -1541,7 +1541,11 @@ class AuthSrv(object):
|
||||||
if vol.flags.get(grp, False):
|
if vol.flags.get(grp, False):
|
||||||
continue
|
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"]]:
|
for grp, rm in [["d2v", "e2v"]]:
|
||||||
if not vol.flags.get(grp, False):
|
if not vol.flags.get(grp, False):
|
||||||
|
|
|
@ -13,6 +13,11 @@ def vf_bmap() -> dict[str, str]:
|
||||||
"no_dedup": "copydupes",
|
"no_dedup": "copydupes",
|
||||||
"no_dupe": "nodupe",
|
"no_dupe": "nodupe",
|
||||||
"no_forget": "noforget",
|
"no_forget": "noforget",
|
||||||
|
"no_robots": "norobots",
|
||||||
|
"no_thumb": "dthumb",
|
||||||
|
"no_vthumb": "dvthumb",
|
||||||
|
"no_athumb": "dathumb",
|
||||||
|
"re_maxage": "scan",
|
||||||
"th_no_crop": "nocrop",
|
"th_no_crop": "nocrop",
|
||||||
"dav_auth": "davauth",
|
"dav_auth": "davauth",
|
||||||
"dav_rt": "davrt",
|
"dav_rt": "davrt",
|
||||||
|
|
Loading…
Reference in a new issue