From c9b04772a05be3e726cc47cc396c3d9db8b1ecf3 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 14 Mar 2023 18:20:10 -0400 Subject: [PATCH] Fix video game scraping when igdb id is there --- vrobbler/apps/videogames/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/videogames/models.py b/vrobbler/apps/videogames/models.py index 46bcf67..b2921e6 100644 --- a/vrobbler/apps/videogames/models.py +++ b/vrobbler/apps/videogames/models.py @@ -138,7 +138,7 @@ class VideoGame(LongPlayScrobblableMixin): # This almost never works without intervention # self.igdb_id = lookup_game_id_from_gdb(self.title) # self.save(update_fields=["igdb_id"]) - load_game_data_from_igdb(self.id) + load_game_data_from_igdb(self.id, self.igdb_id) if (not self.run_time_ticks or force_update) and self.main_story_time: self.run_time_seconds = self.main_story_time