From 408054f7e5fc6cc11ac626075c2595a6939041e7 Mon Sep 17 00:00:00 2001 From: DenOfEquity <166248528+DenOfEquity@users.noreply.github.com> Date: Wed, 28 Aug 2024 11:58:32 +0100 Subject: [PATCH] add 'Lora hashes' to infotext that can be ignored In *Settings -> Disregard fields from pasted infotext* there is a very long list of things that can optionally be ignored when parsing infotext. Now it is a slightly longer list, and includes `Lora hashes`. --- modules/shared_items.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/shared_items.py b/modules/shared_items.py index 1568ba36..31730c14 100644 --- a/modules/shared_items.py +++ b/modules/shared_items.py @@ -85,6 +85,8 @@ def get_infotext_names(): if isinstance(name, str): res[name] = 1 + res['Lora hashes'] = 1 + return list(res)