mirror of https://gitlab.com/bashrc2/epicyon
Extra replacement
parent
756127b953
commit
9b47aee635
|
@ -4587,7 +4587,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
length = int(self.headers['Content-length'])
|
||||
questionParams=self.rfile.read(length).decode('utf-8')
|
||||
questionParams= \
|
||||
questionParams.replace('+',' ').replace('%40','@').replace('%3A',':').replace('%23','#').strip()
|
||||
questionParams.replace('+',' ').replace('%40','@').replace('%3A',':').replace('%23','#').replace('%2F','/').strip()
|
||||
# post being voted on
|
||||
messageId=None
|
||||
if 'messageId=' in questionParams:
|
||||
|
|
Loading…
Reference in New Issue