diff --git a/daemon.py b/daemon.py index 9f1da4c6..a35b1019 100644 --- a/daemon.py +++ b/daemon.py @@ -1668,7 +1668,8 @@ class PubServer(BaseHTTPRequestHandler): # search for a fediverse address, shared item or emoji # from the web interface by selecting search icon if htmlGET and '/users/' in self.path: - if self.path.endswith('/search'): + if self.path.endswith('/search') or \ + '/search?' in self.path: # show the search screen msg=htmlSearch(self.server.translate, \ self.server.baseDir,self.path).encode()