Skip to content

Commit

Permalink
fix: 🚑 missing function
Browse files Browse the repository at this point in the history
  • Loading branch information
Wivik committed Mar 19, 2023
1 parent ff364bd commit f643398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def root_new():
# delete current game db and download it
os.remove(game_file)
f.get_latest_release(repository_owner, repository_name, game_file)
db.db_version = get_game_db_version(game_file)
db_version = db.get_game_db_version(game_file)
global_vars['app_version'] = db_version['version']
return redirect(url_for('sys'))

Expand Down

0 comments on commit f643398

Please sign in to comment.