master
Bob Mottram 2019-08-19 21:11:38 +01:00
parent ceaa7f401d
commit a6e206a8fa
1 changed files with 4 additions and 1 deletions

View File

@ -2357,9 +2357,12 @@ class PubServer(BaseHTTPRequestHandler):
return
searchForEmoji=False
if authorized and self.path.endswith('/searchhandleemoji'):
if self.path.endswith('/searchhandleemoji'):
searchForEmoji=True
self.path=self.path.replace('/searchhandleemoji','/searchhandle')
if self.server.debug:
print('DEBUG: searching for emoji')
print('authorized: '+str(authorized))
# a search was made
if authorized and \