From 66314599f7cad8bf1bca989dd5ca1aca542e6081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Lidwin?= Date: Sat, 30 May 2026 13:36:18 +0200 Subject: [PATCH] fix: unset old_manifest for all types of repair (#697) --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index 4d7483c..703447d 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -1579,7 +1579,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)