remove previous hardcoded turnServers setting

This commit is contained in:
Bruno Windels 2022-09-26 15:27:41 +02:00
parent f74c4e6425
commit e6bf49a6cc
2 changed files with 1 additions and 4 deletions

View File

@ -101,9 +101,6 @@ export class Session {
ownDeviceId: sessionInfo.deviceId,
ownUserId: sessionInfo.userId,
logger: this._platform.logger,
turnServers: [{
urls: ["stun:turn.matrix.org"],
}],
forceTURN: false,
});
this._roomStateHandler = new RoomStateHandlerSet();

View File

@ -40,7 +40,7 @@ import type {Clock} from "../../platform/web/dom/Clock";
import type {RoomStateHandler} from "../room/state/types";
import type {MemberSync} from "../room/timeline/persistence/MemberWriter";
export type Options = Omit<GroupCallOptions, "emitUpdate" | "createTimeout"> & {
export type Options = Omit<GroupCallOptions, "emitUpdate" | "createTimeout" | "turnServerSource"> & {
clock: Clock
};