From 71bd3062687f0d4de3ee15060e73f5c4d5144a19 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 13 Jan 2023 17:56:32 +0000 Subject: [PATCH] fix unpost filters with slashes --- copyparty/httpcli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/copyparty/httpcli.py b/copyparty/httpcli.py index fa361c7d..02b2f4ea 100644 --- a/copyparty/httpcli.py +++ b/copyparty/httpcli.py @@ -2849,6 +2849,7 @@ class HttpCli(object): raise Pebkac(500, "sqlite3 is not available on the server; cannot unpost") filt = self.uparam.get("filter") + filt = unquotep(filt or "") lm = "ups [{}]".format(filt) self.log(lm)