We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ae557 commit b70ac99Copy full SHA for b70ac99
1 file changed
codeclash/viewer/app.py
@@ -36,7 +36,7 @@ def get_round_count_from_metadata(log_dir: Path) -> int | None:
36
37
try:
38
metadata = json.loads(metadata_file.read_text())
39
- return metadata.get("config", {}).get("game", {}).get("rounds")
+ return metadata.get("config", {}).get("tournament", {}).get("rounds")
40
except (json.JSONDecodeError, KeyError):
41
return None
42
0 commit comments