mirror of https://gitlab.com/bashrc2/epicyon
Allow unauthorized emoji search
parent
a6e206a8fa
commit
e0211371e3
|
@ -2365,7 +2365,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
print('authorized: '+str(authorized))
|
print('authorized: '+str(authorized))
|
||||||
|
|
||||||
# a search was made
|
# a search was made
|
||||||
if authorized and \
|
if (authorized or searchForEmoji) and \
|
||||||
(self.path.endswith('/searchhandle') or '/searchhandle?page=' in self.path):
|
(self.path.endswith('/searchhandle') or '/searchhandle?page=' in self.path):
|
||||||
# get the page number
|
# get the page number
|
||||||
pageNumber=1
|
pageNumber=1
|
||||||
|
|
Loading…
Reference in New Issue