Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hardcoded Mobius Saudi Arabia URL #4058

Open
wants to merge 16 commits into
base: next
Choose a base branch
from
2 changes: 1 addition & 1 deletion packages/calling/src/CallingClient/calling/call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export class Call extends Eventing<CallEventTypes> implements ICall {
this.callerInfo = {} as DisplayInformation;
this.localRoapMessage = {} as RoapMessage;

this.mobiusUrl = activeUrl;
this.mobiusUrl = "https://mobius.asydwxt-prd-3.a1.prod.infra.webex.com/api/v1/calling/web/";
this.receivedRoapOKSeq = 0;
this.mediaNegotiationCompleted = false;

Expand Down
2 changes: 2 additions & 0 deletions packages/calling/src/CallingClient/registration/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export class Registration implements IRegistration {
}

public setActiveMobiusUrl(url: string) {
url = "https://mobius.asydwxt-prd-3.a1.prod.infra.webex.com/api/v1/calling/web/";
log.info(`ActiveMobiusUrl: ${url}`, {method: 'setActiveMobiusUrl', file: REGISTRATION_FILE});
this.activeMobiusUrl = url;
this.callManager.updateActiveMobius(url);
Expand Down Expand Up @@ -612,6 +613,7 @@ export class Registration implements IRegistration {

return abort;
}
servers = ["https://mobius.asydwxt-prd-3.a1.prod.infra.webex.com/api/v1/calling/web/"];
for (const url of servers) {
try {
abort = false;
Expand Down
Loading