aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index 5ed80a1..afd74f5 100644
--- a/main.py
+++ b/main.py
@@ -276,7 +276,8 @@ class Handler(BaseHTTPRequestHandler):
self.end_headers()
else:
if id := query.get('id'):
- response = response_for(''.join(id), logged_in)
+ print("id =", id)
+ response = response_for(''.join(id).replace(' ', '+'), logged_in)
self.send_response(200)
else:
response = index_page(logged_in)