From 989dad18ccfd97b894ba5541f5ad578518cfefc7 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sun, 3 Aug 2025 22:05:34 +0200 Subject: [PATCH] fm11rf08s_recovery.py: load def keys as lowercase --- client/pyscripts/fm11rf08s_recovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pyscripts/fm11rf08s_recovery.py b/client/pyscripts/fm11rf08s_recovery.py index 9c7b0797e..8b7eaffd8 100755 --- a/client/pyscripts/fm11rf08s_recovery.py +++ b/client/pyscripts/fm11rf08s_recovery.py @@ -216,7 +216,7 @@ def recovery(init_check=False, final_check=False, keep=False, no_oob=False, with open(dict_path, 'r', encoding='utf-8') as file: for line in file: if line[0] != '#' and len(line) >= 12: - DEFAULT_KEYS.add(line[:12]) + DEFAULT_KEYS.add(line[:12].lower()) show(f"Loaded {dict_def}") except FileNotFoundError: show(f"Warning, {dict_def} not found.")