Skip to content

Commit

Permalink
fix: apply fixes to use updated legendary
Browse files Browse the repository at this point in the history
  • Loading branch information
kurokobo committed Oct 23, 2022
1 parent 92872cc commit e0770a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helper/app_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def gather_msstore(id, market):


def gather_epicgames():
_client = LegendaryCLI()
_client = LegendaryCLI(api_timeout=10.0)
_client.core.login()
_product_infos, _ = _client.core.get_game_and_dlc_list()

Expand All @@ -86,7 +86,7 @@ def gather_epicgames():
_data = vars(_product_info)
_id = _data["app_name"]
_name = _data["app_title"]
_version = _data["asset_info"]["build_version"]
_version = _data["asset_infos"]["Windows"]["build_version"]

_row = [_id, _id, _name, _version]
_table.append(_row)
Expand Down

0 comments on commit e0770a7

Please sign in to comment.