ソースを参照

[scrobbles] Fix missed run_time_seconds cleanup

Colin Powell 1 週間 前
コミット
749e74a54c
1 ファイル変更1 行追加1 行削除
  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)