Revert "Don't blacklist games on failed API calls"

This reverts commit 124d2c8ec7.

Probably did more harm than good. You can't win though.
This commit is contained in:
kramo
2024-05-25 12:59:01 +02:00
parent 942be92a9e
commit 33c83b65d9

View File

@@ -48,16 +48,10 @@ class SteamAPIManager(AsyncManager):
appid = additional_data.get("steam_appid", None)
if appid is None:
return
# Get online metadata
try:
online_data = self.steam_api_helper.get_api_data(appid=appid)
except SteamGameNotFoundError:
return
except SteamNotAGameError:
except (SteamNotAGameError, SteamGameNotFoundError):
game.update_values({"blacklisted": True})
else:
game.update_values(online_data)