2
Bug
Archived
Mar 29, 2026 · Artonis
throw-ins
I think I found an error in the match statistics. The key 'throw-ins' is incorrect when using Javascript/Python because JS interprets it as a subtraction operator. At least in my case (JS/HTML), it breaks the code when I try to fetch it. The correct format should follow the rest of the data, which is 'throw_ins'.
Comments (1)
Bzzoiro
Admin
Apr 02, 2026 20:05
Good catch Artonis! You were right — throw-ins was the only stat key using a hyphen instead of an underscore, which breaks JS dot notation and destructuring.
This is now fixed:
- The key is now throw_ins (underscore), consistent with all other stats
- All 5,400+ existing events have been updated in the database
- Future live stats will also use the correct format
No changes needed on your end — it should just work now.