diff --git a/tracker/tracker/src/main/app/index.ts b/tracker/tracker/src/main/app/index.ts index 068e1dabf..cb4bd2826 100644 --- a/tracker/tracker/src/main/app/index.ts +++ b/tracker/tracker/src/main/app/index.ts @@ -180,7 +180,8 @@ export default class App { ) if (!this.options.forceSingleTab && globalThis && 'BroadcastChannel' in globalThis) { - this.bc = inIframe() ? null : new BroadcastChannel('rick') + const host = location.hostname.split('.').slice(-2).join('_') + this.bc = inIframe() ? null : new BroadcastChannel(`rick_${host}`) } this.revID = this.options.revID