Explorar el Código

[scrobbles] Fix missed run_time_seconds cleanup

Colin Powell hace 1 semana
padre
commit
749e74a54c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      vrobbler/apps/sports/models.py

+ 1 - 1
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)