From 73251f92c830fe7f85ef284d5e1d6db73be0afca Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 13 Feb 2023 16:04:26 -0500 Subject: [PATCH] Now it works in colab properly again. --- webshit/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webshit/index.html b/webshit/index.html index 66d09660..d9b11cfe 100644 --- a/webshit/index.html +++ b/webshit/index.html @@ -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)}); }