refactor: remove localhost-only check

This commit is contained in:
Derrick Hammer 2023-09-09 07:35:38 -04:00
parent 602673e825
commit 268960b800
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 5 deletions

View File

@ -348,11 +348,8 @@ function messageBridge() {
return; return;
} }
bridgeInitComplete = true; bridgeInitComplete = true;
log("browser extension not found, falling back to lumeweb.com");
if ("localhost" === window.location.hostname) { launchKernelFrame();
log("browser extension not found, falling back to lumeweb.com");
launchKernelFrame();
}
}, 500); }, 500);
} }