From 96030f4a9998af67da19df490ffcd46f0034b875 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 11 Sep 2025 09:05:50 -0400 Subject: [PATCH] [boardgames] Fix expansion checking --- vrobbler/apps/scrobbles/scrobblers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/scrobblers.py b/vrobbler/apps/scrobbles/scrobblers.py index 93211b0..173022d 100644 --- a/vrobbler/apps/scrobbles/scrobblers.py +++ b/vrobbler/apps/scrobbles/scrobblers.py @@ -368,7 +368,7 @@ def email_scrobble_board_game( enriched_game = find_and_enrich_board_game_data(game) if game.get("isBaseGame"): base_games[game.get("id")] = enriched_game - elif game.get("isExpansion"): + if game.get("isExpansion"): expansions[game.get("id")] = enriched_game locations = {}