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;
if (IS_VESKTOP) {
result = IS_VESKTOP;
} else if (IS_EQUIBOP) {
result = IS_EQUIBOP;
} else if (IS_WEB) {
result = IS_WEB;
} else {
switch (true) {
case IS_VESKTOP:
case IS_EQUIBOP:
case "legcord" in window:
case "goofcord" in window:
result = true;
break;
default:
result = false;
}