@@ -298,7 +298,7 @@ namespace SSC::IPC {
298298 enumerable: true,
299299 get: () => {
300300 if (
301- globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier) ||
301+ globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier.toLowerCase() ) ||
302302 globalThis.origin.includes(globalThis.__args.client.host + ':' + globalThis.__args.client.port)
303303 ) {
304304 return globalThis.top
@@ -466,7 +466,7 @@ namespace SSC::IPC {
466466 globalThis.document &&
467467 !globalThis.RUNTIME_APPLICATION_URL_EVENT_BACKLOG &&
468468 (
469- globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier) ||
469+ globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier.toLowerCase() ) ||
470470 globalThis.origin.includes(globalThis.__args.client.host + ':' + globalThis.__args.client.port)
471471 )
472472 ) {
@@ -557,7 +557,7 @@ namespace SSC::IPC {
557557 }
558558
559559 if (
560- globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier) ||
560+ globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier.toLowerCase() ) ||
561561 globalThis.origin.includes(globalThis.__args.client.host + ':' + globalThis.__args.client.port)
562562 ) {
563563 if (globalThis.document && globalThis.document.readyState !== 'complete') {
@@ -598,7 +598,7 @@ namespace SSC::IPC {
598598 buffers.push_back (R"JAVASCRIPT(
599599 if (
600600 globalThis.document && !globalThis.module && (
601- globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier) ||
601+ globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier.toLowerCase() ) ||
602602 globalThis.origin.includes(globalThis.__args.client.host + ':' + globalThis.__args.client.port)
603603 )
604604 ) {
@@ -660,7 +660,7 @@ namespace SSC::IPC {
660660 buffers.push_back (R"JAVASCRIPT(
661661 if (
662662 globalThis.document && !globalThis.process && (
663- globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier) ||
663+ globalThis.origin.includes(globalThis.__args.config.meta_bundle_identifier.toLowerCase() ) ||
664664 globalThis.origin.includes(globalThis.__args.client.host + ':' + globalThis.__args.client.port)
665665 )
666666 ) {
0 commit comments