Merge pull request #4907 from QualiaRain/fix/prompts-from-file-batch-save

Fix prompts-from-file batch save metadata misalignment
This commit is contained in:
Vladimir Mandic
2026-06-12 10:34:39 +02:00
committed by GitHub
+2 -2
View File
@@ -148,8 +148,8 @@ class PromptsFromFileScript(scripts_manager.Script):
all_seeds += proc.all_seeds
all_prompts += proc.all_prompts
all_negative += proc.all_negative_prompts
images += proc.images
infotexts += proc.infotexts
images += proc.images[proc.index_of_first_image:]
infotexts += proc.infotexts[proc.index_of_first_image:]
if state.interrupted:
break
return get_processed(p, images, p.seed, "", all_prompts=all_prompts, all_seeds=all_seeds, all_negative_prompts=all_negative, infotexts=infotexts)