From 84bb6f915ee037b90d12f264f3bcf5e75cc83aa2 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 16 Aug 2021 06:58:24 +0200 Subject: [PATCH] fix unpost ui for nonroot volumes --- copyparty/httpcli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/httpcli.py b/copyparty/httpcli.py index e949541a..7a3b309f 100644 --- a/copyparty/httpcli.py +++ b/copyparty/httpcli.py @@ -1699,7 +1699,7 @@ class HttpCli(object): q = "select sz, rd, fn, at from up where ip=? and at>?" for sz, rd, fn, at in cur.execute(q, (self.ip, lim)): - vp = "/" + "/".join([rd, fn]).strip("/") + vp = "/" + "/".join(x for x in [vol.vpath, rd, fn] if x) if filt and filt not in vp: continue