mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -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):
|
||||
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):
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue