diff --git a/web/app/rtc/video/Connection.ts b/web/app/rtc/video/Connection.ts index 1a769a9f..26f993cd 100644 --- a/web/app/rtc/video/Connection.ts +++ b/web/app/rtc/video/Connection.ts @@ -127,8 +127,9 @@ export class RtpVideoConnection implements VideoConnection { return this.broadcasts[type] ? this.broadcasts[type].state : VideoBroadcastState.Stopped; } - getBroadcastStatistics(type: VideoBroadcastType): Promise { - return this.rtcConnection.getVideoBroadcastStatistics(type === "camera" ? "video" : "video-screen"); + async getBroadcastStatistics(type: VideoBroadcastType): Promise { + /* TODO! */ + return undefined; } getBroadcastingSource(type: VideoBroadcastType): VideoSource | undefined {