Skip to content

Commit

Permalink
fix: correctly identify and remove performance LoRA
Browse files Browse the repository at this point in the history
  • Loading branch information
mashb1t committed Jun 16, 2024
1 parent 541fb2d commit b3e4506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/meta_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def load_parameter_button_click(raw_metadata: dict | str, is_generating: bool):

# prevent performance LoRAs to be added twice, by performance and by lora
performance_filename = None
if performance is not None and performance in Performance.list():
if performance is not None and performance in Performance.values():
performance = Performance(performance)
performance_filename = performance.lora_filename()

Expand Down Expand Up @@ -232,7 +232,7 @@ def parse_meta_from_preset(preset_content):
loras = getattr(modules.config, settings_key)
if settings_key in items:
loras = items[settings_key]
for index, lora in enumerate(loras[:5]):
for index, lora in enumerate(loras[:modules.config.default_max_lora_number]):
preset_prepared[f'lora_combined_{index + 1}'] = ' : '.join(map(str, lora))
elif settings_key == "default_aspect_ratio":
if settings_key in items and items[settings_key] is not None:
Expand Down

0 comments on commit b3e4506

Please sign in to comment.