From e9defa0b22027b3150800ec8c48ac40b2581e333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Lidwin?= Date: Fri, 7 Mar 2025 16:47:07 +0100 Subject: [PATCH] fix: unset old_manifest for all types of repair --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index 04344e3..07e559f 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -1447,7 +1447,7 @@ class LegendaryCore: if not repair_use_latest and old_manifest: # use installed manifest for repairs instead of updating new_manifest = old_manifest - old_manifest = None + old_manifest = None filename = clean_filename(f'{game.app_name}.repair') resume_file = os.path.join(self.lgd.get_tmp_path(), filename)