瀏覽代碼

[boardgames] Fix expansion checking

Colin Powell 3 月之前
父節點
當前提交
96030f4a99
共有 1 個文件被更改,包括 1 次插入1 次删除
  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 = {}