From 58e019f332524c8ea919fd50f449c84d1cd5ffaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Stucke?= Date: Fri, 6 Oct 2023 09:38:38 +0200 Subject: [PATCH] render HID as update preset of current FW instead of UID --- src/web_interface/components/analysis_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web_interface/components/analysis_routes.py b/src/web_interface/components/analysis_routes.py index bce42ac2c..63f97af03 100644 --- a/src/web_interface/components/analysis_routes.py +++ b/src/web_interface/components/analysis_routes.py @@ -238,7 +238,7 @@ def _add_preset_from_firmware(plugin_dict, fw: Firmware): Adds a preset to plugin_dict with all plugins ticked that are processed on the firmware fw. Returns the name of the new preset. """ - preset_name = fw.uid + preset_name = fw.get_hid() previously_processed_plugins = list(fw.processed_analysis.keys()) with suppress(ValueError):