mirror of
https://github.com/vladmandic/automatic
synced 2026-09-05 20:40:44 +02:00
Merge pull request #4462 from CalamitousFelicitousness/fix(processing)/decode_results_to_list
fix(processing): convert vae_decode results to list in process_decode
This commit is contained in:
@@ -477,6 +477,8 @@ def process_decode(p: processing.StableDiffusionProcessing, output):
|
||||
height = height,
|
||||
frames = frames,
|
||||
)
|
||||
if not isinstance(results, list):
|
||||
results = list(results)
|
||||
elif hasattr(output, 'images'):
|
||||
results = output.images
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user