Update WebContext Results

This commit is contained in:
thororen1234 2024-10-31 23:34:32 -04:00
parent a7293a8127
commit 9e21e2d0b0

View file

@ -32,13 +32,14 @@ async function fetchImage(url: string) {
} }
let result; let result;
if (IS_VESKTOP) { switch (true) {
result = IS_VESKTOP; case IS_VESKTOP:
} else if (IS_EQUIBOP) { case IS_EQUIBOP:
result = IS_EQUIBOP; case "legcord" in window:
} else if (IS_WEB) { case "goofcord" in window:
result = IS_WEB; result = true;
} else { break;
default:
result = false; result = false;
} }