From 50c79f252f1e5aeb63f4c5beedc65e6cb588621f Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 20 Oct 2023 23:07:39 +1300 Subject: [PATCH] Fix domain server not being told the metaverse server URL --- src/modules/domain/domain.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/domain/domain.ts b/src/modules/domain/domain.ts index 2cb136c3..4762ebdf 100644 --- a/src/modules/domain/domain.ts +++ b/src/modules/domain/domain.ts @@ -136,6 +136,7 @@ export class Domain { Log.debug(Log.types.NETWORK, `Creating a new DomainServer.`); this._domain = new DomainServer(); + this._domain.metaverseServerURL = this.getMetaverseUrl(); this._domain.account.authRequired.connect(() => { console.debug("AUTH REQUIRED: Open login dialog"); applicationStore.dialog.show = true;