From: Benjamin Auder Date: Thu, 18 Nov 2021 11:00:34 +0000 (+0100) Subject: 'update' X-Git-Url: https://git.auder.net/?p=rpsls-web.git;a=commitdiff_plain;h=310a5febf1cbb15fce4238f6193e7a3d7286bdc5 'update' --- diff --git a/index.html b/index.html index a62f9c1..1bac61d 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,9 @@ + + + diff --git a/server.py b/server.py index 01047a5..f63f6e6 100644 --- a/server.py +++ b/server.py @@ -57,8 +57,8 @@ def login(sid, data): uid = cur.fetchone()[0] else: raise + sio.emit("login", {"name": data, "uid": uid}, room=sid) db_operation(upsert) - sio.emit("login", {"name": data, "uid": uid}, room=sid) @sio.event def seek(sid, data): @@ -112,7 +112,7 @@ static_files = { PORT = getenv('RPSLS_PORT') if PORT is None: - PORT = "8000" + PORT = "8000" #8001 PORT = int(PORT) # Wrap with a WSGI application