Description : Fixing LGTM error. Instead of assignment, extra |=| was typed. (#24657)

pull/24782/head
amolghode1981 4 years ago committed by Pierre Lehnen
parent 65bfb973e6
commit 18f0689ca9
  1. 3
      client/lib/voip/Stream.ts

@ -61,7 +61,8 @@ export default class Stream {
if (this.renderingMediaElement) {
// Someone already has setup the stream and initializing it once again
// Clear the existing stream object
this.renderingMediaElement.srcObject == null;
this.renderingMediaElement.pause();
this.renderingMediaElement.srcObject = null;
}
this.renderingMediaElement = rmElement;
}

Loading…
Cancel
Save