From 117366a57f51e3fe660f556557769ea4bb442a7e Mon Sep 17 00:00:00 2001 From: csantosm <4a.santos@gmail.com> Date: Thu, 8 Oct 2020 18:26:30 +0200 Subject: [PATCH] openvidu-browser: Removed sendVideoData call for remote event --- openvidu-browser/src/OpenVidu/Session.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/openvidu-browser/src/OpenVidu/Session.ts b/openvidu-browser/src/OpenVidu/Session.ts index b6b7494d..d979c459 100644 --- a/openvidu-browser/src/OpenVidu/Session.ts +++ b/openvidu-browser/src/OpenVidu/Session.ts @@ -900,7 +900,6 @@ export class Session extends EventDispatcher { break; } this.ee.emitEvent('streamPropertyChanged', [new StreamPropertyChangedEvent(this, stream, msg.property, msg.newValue, oldValue, msg.reason)]); - this.sendVideoData(stream.streamManager); if (!!stream.streamManager) { stream.streamManager.emitEvent('streamPropertyChanged', [new StreamPropertyChangedEvent(stream.streamManager, stream, msg.property, msg.newValue, oldValue, msg.reason)]); }