Update all the places we need base_run_time_seconds now

This commit is contained in:
2025-11-02 21:18:28 -05:00
parent a474b5df48
commit a8747dfe77
17 changed files with 28 additions and 28 deletions

View File

@ -95,8 +95,8 @@ class Task(LongPlayScrobblableMixin):
def find_or_create(cls, title: str) -> "Task":
task, created = cls.objects.get_or_create(title=title)
if created:
task.run_time_seconds = 1800
task.save(update_fields=["run_time_seconds"])
task.base_run_time_seconds = 1800
task.save(update_fields=["base_run_time_seconds"])
return task