mirror of https://gitlab.com/bashrc2/epicyon
Semicolon separator
parent
cbb76eb97b
commit
3024bd77d3
|
@ -14404,8 +14404,8 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
'?editblogpost=' in self.path and \
|
||||
';actor=' in self.path:
|
||||
messageId = self.path.split('?editblogpost=')[1]
|
||||
if '?' in messageId:
|
||||
messageId = messageId.split('?')[0]
|
||||
if ';' in messageId:
|
||||
messageId = messageId.split(';')[0]
|
||||
actor = self.path.split(';actor=')[1]
|
||||
if ';' in actor:
|
||||
actor = actor.split(';')[0]
|
||||
|
|
Loading…
Reference in New Issue