checks for nonexistent option in newer webUI on startup
This commit is contained in:
parent
665dbf26a4
commit
3f2bbf02ef
1 changed files with 6 additions and 0 deletions
|
@ -343,6 +343,12 @@ async function testHostConnection() {
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
document.getElementById("host").value + "/sdapi/v1/options"
|
document.getElementById("host").value + "/sdapi/v1/options"
|
||||||
);
|
);
|
||||||
|
const optionsdata = await response.json();
|
||||||
|
if (optionsdata["use_scale_latent_for_hires_fix"]) {
|
||||||
|
const message = `You are using an outdated version of A1111 webUI.\nThe HRfix options will not work until you update to at least commit ef27a18\n(https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/ef27a18b6b7cb1a8eebdc9b2e88d25baf2c2414d)\nor newer.`;
|
||||||
|
console.error(message);
|
||||||
|
alert(message);
|
||||||
|
}
|
||||||
switch (response.status) {
|
switch (response.status) {
|
||||||
case 200: {
|
case 200: {
|
||||||
setConnectionStatus("online");
|
setConnectionStatus("online");
|
||||||
|
|
Loading…
Reference in a new issue