Add check for missing Itch.io appids

This commit is contained in:
Mathieu Comandon 2023-10-27 12:21:20 -07:00
parent 4b7b4c0e12
commit d17b4583b5

View file

@ -256,6 +256,8 @@ class ItchIoService(OnlineService):
def get_key(self, appid):
"""Retrieve cache information on a key"""
if not appid:
raise ValueError("Missing Itch.io app ID")
game_filename = self.get_game_cache(appid)
game = {}