Now it works in colab properly again.

This commit is contained in:
comfyanonymous 2023-02-13 16:04:26 -05:00
parent 93d84e3b9c
commit 73251f92c8

View File

@ -491,7 +491,7 @@ document.addEventListener('drop', (event) => {
fetch('/prompt')
.then(response => response.json())
.then(data => {
updateStatus(data.exec_info.queue_remaining);
updateStatus(data);
}).catch((response) => {updateStatus(null)});
}