From 38376b61f408926e98d7d98ee128e4e566029364 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 3 Dec 2020 13:56:41 +0000 Subject: [PATCH] Unquote hashtag --- daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon.py b/daemon.py index ee824c32b..2ab60cb3c 100644 --- a/daemon.py +++ b/daemon.py @@ -3000,6 +3000,7 @@ class PubServer(BaseHTTPRequestHandler): self._404() return hashtag = usersPath.split('/tags/')[1].strip() + hashtag = urllib.parse.unquote_plus(hashtag) if not hashtag: # no hashtag was given in the path self._404()