From e0211371e33135e6ff95079e28d8060a1f32da77 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 19 Aug 2019 21:13:21 +0100 Subject: [PATCH] Allow unauthorized emoji search --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index d47349ecc..c33bb3934 100644 --- a/daemon.py +++ b/daemon.py @@ -2365,7 +2365,7 @@ class PubServer(BaseHTTPRequestHandler): print('authorized: '+str(authorized)) # a search was made - if authorized and \ + if (authorized or searchForEmoji) and \ (self.path.endswith('/searchhandle') or '/searchhandle?page=' in self.path): # get the page number pageNumber=1