mirror of https://gitlab.com/bashrc2/epicyon
Unquote url
parent
398a97fcec
commit
9320f5bb76
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue