Skip to content

Commit

Permalink
fix IGDB edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
Her Email authored and alphatownsman committed Nov 11, 2023
1 parent 6b54271 commit 3314ab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catalog/sites/igdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ def scrape(self):
metadata={
"title": r["name"],
"other_title": [],
"developer": [developer],
"publisher": [publisher],
"developer": [developer] if developer else [],
"publisher": [publisher] if publisher else [],
"release_date": release_date,
"genre": genre,
"platform": platform,
Expand Down

0 comments on commit 3314ab3

Please sign in to comment.