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()