Skip to content

Commit

Permalink
fix: remvoe test log
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 committed May 21, 2024
1 parent 0bdbfd5 commit 335706d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/hms-video-store/src/media/tracks/HMSVideoTrack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ export class HMSVideoTrack extends HMSTrack {
private reTriggerPlay = ({ videoElement, stream }: { videoElement: HTMLVideoElement; stream: MediaStream }) => {
setTimeout(() => {
if (videoElement.paused) {
console.log('retriggering play');
// This is needed for safari and firefox to work properly
videoElement.srcObject = stream;
videoElement.play().catch(console.error);
Expand Down

0 comments on commit 335706d

Please sign in to comment.