From 3beab5e7c5a45b8a3bf9acdb8f4cfc0797c1e780 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Sun, 18 Aug 2019 17:11:35 +0100
Subject: [PATCH] Remove authorized check, it will happen when post is sent

---
 daemon.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/daemon.py b/daemon.py
index 421e709c..29892d49 100644
--- a/daemon.py
+++ b/daemon.py
@@ -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('?')