mirror of https://gitlab.com/bashrc2/epicyon
Remove authorized check, it will happen when post is sent
parent
e0e5f54629
commit
3beab5e7c5
|
@ -1022,7 +1022,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
inReplyToUrl=None
|
inReplyToUrl=None
|
||||||
replyWithDM=False
|
replyWithDM=False
|
||||||
replyToList=[]
|
replyToList=[]
|
||||||
if authorized and '?replyto=' in self.path:
|
if '?replyto=' in self.path:
|
||||||
inReplyToUrl=self.path.split('?replyto=')[1]
|
inReplyToUrl=self.path.split('?replyto=')[1]
|
||||||
if '?' in inReplyToUrl:
|
if '?' in inReplyToUrl:
|
||||||
mentionsList=inReplyToUrl.split('?')
|
mentionsList=inReplyToUrl.split('?')
|
||||||
|
|
Loading…
Reference in New Issue