Skip to content

Commit

Permalink
Fix validationg bug
Browse files Browse the repository at this point in the history
  • Loading branch information
matanki-saito committed Sep 17, 2022
1 parent 989da8a commit fd27873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angelica.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def get_game_install_dir_path_epic(target_app_id):
logger.info('Not found InstallLocation')

# チェック
if not os.path.isdir(game_install_dir_path):
if game_install_dir_path is None or not os.path.isdir(game_install_dir_path):
logger.info('Not found game_install_dir_path')
return None
else:
Expand Down

0 comments on commit fd27873

Please sign in to comment.