Commit 2e6270e3 authored by Jairo Correa's avatar Jairo Correa
Browse files

Stop auto queue on error

parent 3fcab0c6
...@@ -809,7 +809,8 @@ export class ComfyUI { ...@@ -809,7 +809,8 @@ export class ComfyUI {
if ( if (
this.lastQueueSize != 0 && this.lastQueueSize != 0 &&
status.exec_info.queue_remaining == 0 && status.exec_info.queue_remaining == 0 &&
document.getElementById("autoQueueCheckbox").checked document.getElementById("autoQueueCheckbox").checked &&
! app.lastExecutionError
) { ) {
app.queuePrompt(0, this.batchCount); app.queuePrompt(0, this.batchCount);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment