[scrobbles] Fix missed run_time_seconds cleanup

This commit is contained in:
2025-11-05 09:58:26 -05:00
parent 7b3692ef7b
commit 749e74a54c

View File

@ -244,7 +244,7 @@ class SportEvent(ScrobblableMixin):
"player_two": player_two,
"start": data_dict.get("Start"),
"round": round,
"run_time_seconds": data_dict.get("RunTime"),
"base_run_time_seconds": data_dict.get("RunTime"),
}
event, _created = cls.objects.get_or_create(**event_dict)