From 30974482c5bfc73ba0e63724855b0d3269f44b51 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Mon, 12 Sep 2022 23:15:41 +0530 Subject: [PATCH] The seed displayed in the UI was wrong --- ui/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/index.html b/ui/index.html index 21dbc759..b7d557a4 100644 --- a/ui/index.html +++ b/ui/index.html @@ -671,10 +671,12 @@ async function doMakeImage(reqBody) { for (let idx in res.output) { let imgBody = '' + let seed = 0 try { let imgData = res.output[idx] imgBody = imgData.data + seed = imgData.seed } catch (e) { console.log(imgBody) setStatus('request', 'invalid image', 'error')