From cc52e00d15b57b70d05f8c84586be84ad4a7c93f Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 4 Nov 2024 20:40:49 -0500 Subject: [PATCH] [videos] Fix utils --- vrobbler/apps/videos/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/videos/utils.py b/vrobbler/apps/videos/utils.py index adebf1e..7db0a89 100644 --- a/vrobbler/apps/videos/utils.py +++ b/vrobbler/apps/videos/utils.py @@ -67,7 +67,7 @@ def get_or_create_video(data_dict: dict, post_keys: dict, force_update=False): # TODO this is a hack so we don't spam scrobbles without a run time seconds if video.run_time_seconds == 0: video.run_time_seconds = 1800 - video.save(update_fields=["run_time_seconds"] + video.save(update_fields=["run_time_seconds"]) return video