From 749e74a54ccfd84ab47d20e82028161bbfb7efb5 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 5 Nov 2025 09:58:26 -0500 Subject: [PATCH] [scrobbles] Fix missed run_time_seconds cleanup --- vrobbler/apps/sports/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/sports/models.py b/vrobbler/apps/sports/models.py index 0d44d10..f2ab401 100644 --- a/vrobbler/apps/sports/models.py +++ b/vrobbler/apps/sports/models.py @@ -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)