Skip to content

Commit

Permalink
fix: error on dlc if no installer (log error and ignore) Heroic-Games…
Browse files Browse the repository at this point in the history
  • Loading branch information
JonBoyleCoding committed Jun 16, 2024
1 parent 7c9a6f4 commit 7422384
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gogdl/dl/managers/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ def setup(self):
install_handler = linux.InstallerHandler(installer_data["downlink"],
str(dlc["id"]),
self.api_handler.session)
if installer is None:
self.logger.error(
dlc["title"] + " - Does not have a linux installer"
)
continue

self.installer_handlers.append(install_handler)

Expand Down

0 comments on commit 7422384

Please sign in to comment.