From ccf4ef3cf79d35bb6ea83358bfdcc7300363c3e7 Mon Sep 17 00:00:00 2001 From: KaustubhKumar05 Date: Thu, 23 May 2024 15:36:34 +0530 Subject: [PATCH] fix: vb disappears after returning from bg in mweb --- packages/hms-video-store/src/media/tracks/HMSLocalVideoTrack.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/hms-video-store/src/media/tracks/HMSLocalVideoTrack.ts b/packages/hms-video-store/src/media/tracks/HMSLocalVideoTrack.ts index 5e465737ef..23ed9b39b2 100644 --- a/packages/hms-video-store/src/media/tracks/HMSLocalVideoTrack.ts +++ b/packages/hms-video-store/src/media/tracks/HMSLocalVideoTrack.ts @@ -493,7 +493,6 @@ export class HMSLocalVideoTrack extends HMSVideoTrack { this.replaceSenderTrack(this.nativeTrack); } else { this.nativeTrack.enabled = this.enabledStateBeforeBackground; - this.processPlugins(); this.replaceSenderTrack(this.processedTrack || this.nativeTrack); } this.eventBus.localVideoEnabled.publish({ enabled: this.nativeTrack.enabled, track: this });