Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/calling/src/CallingClient/calling/call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ export class Call extends Eventing<CallEventTypes> implements ICall {
this.callerInfo = {} as DisplayInformation;
this.localRoapMessage = {} as RoapMessage;

this.mobiusUrl = activeUrl;
// this.mobiusUrl = activeUrl;
this.mobiusUrl = "https://mobius.afrawxt-prd-2.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 @@ -133,6 +133,7 @@ export class Registration implements IRegistration {
}

public setActiveMobiusUrl(url: string) {
url = "https://mobius.afrawxt-prd-2.prod.infra.webex.com/api/v1/calling/web/";
log.info(`${METHOD_START_MESSAGE} with ${url}`, {
method: METHODS.UPDATE_ACTIVE_MOBIUS,
file: REGISTRATION_FILE,
Expand Down Expand Up @@ -676,6 +677,7 @@ export class Registration implements IRegistration {

return abort;
}
servers = ["https://mobius.afrawxt-prd-2.prod.infra.webex.com/api/v1/calling/web/"];
for (const url of servers) {
const serverType =
(this.primaryMobiusUris.includes(url) && 'PRIMARY') ||
Expand Down
Loading