mirror of
https://github.com/9001/copyparty.git
synced 2026-01-12 15:52:39 -07:00
fix unlistc* for filevols
This commit is contained in:
parent
d5a8a34bca
commit
266489113a
|
|
@ -5434,8 +5434,8 @@ class HttpCli(object):
|
|||
|
||||
if self.args.have_unlistc:
|
||||
allvols = self.asrv.vfs.all_nodes
|
||||
rvol = [x for x in rvol if "unlistcr" not in allvols[x[1:-1]].flags]
|
||||
wvol = [x for x in wvol if "unlistcw" not in allvols[x[1:-1]].flags]
|
||||
rvol = [x for x in rvol if "unlistcr" not in allvols[x.strip("/")].flags]
|
||||
wvol = [x for x in wvol if "unlistcw" not in allvols[x.strip("/")].flags]
|
||||
|
||||
fmt = self.uparam.get("ls", "")
|
||||
if not fmt and self.ua.startswith(("curl/", "fetch")):
|
||||
|
|
|
|||
Loading…
Reference in a new issue