Skip to content

Commit

Permalink
Fix bug where umu gamefixes would not be applied
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Mar 22, 2024
1 parent 93f563f commit ac9ddf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fix.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run_fix(gameid):
game_module = import_module('protonfixes.gamefixes-steam.' + gameid)
else:
log.info('Non-steam game ' + game)
if 'STORE' in os.environ:
if os.environ.get("STORE"):
if os.environ['STORE'].lower() == "amazon":
log.info('Amazon store specified, using Amazon database')
game_module = import_module('protonfixes.gamefixes-amazon.' + gameid)
Expand Down

0 comments on commit ac9ddf2

Please sign in to comment.