allow url params
This commit is contained in:
parent
053b20c8ca
commit
46ddbb22bf
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class ServerRequestHandler(http.server.SimpleHTTPRequestHandler):
|
|||
server_version = "ConcedoLlamaForKoboldServer"
|
||||
|
||||
def do_GET(self):
|
||||
if self.path=="/":
|
||||
if self.path=="/" or self.path.startswith('/?') or self.path.startswith('?'):
|
||||
if embedded_kailite is None:
|
||||
self.send_response(200)
|
||||
self.end_headers()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue