Skip to content

Commit

Permalink
fix: infinite false positive update loop
Browse files Browse the repository at this point in the history
  • Loading branch information
imLinguin committed Mar 8, 2024
1 parent 5e878e1 commit ab3e236
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nile/downloading/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ def download(self, force_verifying=False, base_install_path="", install_path="")
self.logger.debug(f"Number of files {len(patchmanifest.files)}")
if len(patchmanifest.files) == 0:
self.logger.info("Game is up to date")
self.finish(False)
return
total_size = sum(f.download_size for f in patchmanifest.files)
self.info()
Expand Down

0 comments on commit ab3e236

Please sign in to comment.