From 9320f5bb76204fc8eaa1a11dc08c7aef033f3a5b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 18 Jan 2023 10:06:24 +0000 Subject: [PATCH] Unquote url --- daemon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index e08a9e535..0207a110e 100644 --- a/daemon.py +++ b/daemon.py @@ -18715,7 +18715,8 @@ class PubServer(BaseHTTPRequestHandler): hashtag_url = self.path.split('?remotetag=')[1] if ';' in hashtag_url: hashtag_url = hashtag_url.split(';')[0] - hashtag_url = hashtag_url.replace('--', '/') + hashtag_url = \ + urllib.parse.unquote_plus(hashtag_url.replace('--', '/')) page_number = 1 if ';page=' in self.path: