Procházet zdrojové kódy

[boardgames] Fix expansion checking

Colin Powell před 3 měsíci
rodič
revize
96030f4a99
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      vrobbler/apps/scrobbles/scrobblers.py

+ 1 - 1
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 = {}