Allow unauthorized emoji search

master
Bob Mottram 2019-08-19 21:13:21 +01:00
parent a6e206a8fa
commit e0211371e3
1 changed files with 1 additions and 1 deletions

View File

@ -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