Remove authorized check, it will happen when post is sent

master
Bob Mottram 2019-08-18 17:11:35 +01:00
parent e0e5f54629
commit 3beab5e7c5
1 changed files with 1 additions and 1 deletions

View File

@ -1022,7 +1022,7 @@ class PubServer(BaseHTTPRequestHandler):
inReplyToUrl=None
replyWithDM=False
replyToList=[]
if authorized and '?replyto=' in self.path:
if '?replyto=' in self.path:
inReplyToUrl=self.path.split('?replyto=')[1]
if '?' in inReplyToUrl:
mentionsList=inReplyToUrl.split('?')