This commit is contained in:
2026-01-05 16:18:51 +01:00
parent 6ac4e1610f
commit 9295168216

View File

@@ -40,7 +40,7 @@ class GameController:
increment = int(data["increment"])
timestamp = int(data["timestamp"])
self._game_service.start(white_name, black_name, time_control, increment)
self._game_service.start(white_name, black_name, time_control, increment, timestamp)
self._has_started = True
return jsonify({"status": "ok", "message": "Game started"}), 200
except ServiceException as ex: