RTCMultiConnection icon indicating copy to clipboard operation
RTCMultiConnection copied to clipboard

The play() request was interrupted by a new load request

Open dnish opened this issue 6 years ago • 2 comments

Hey @muaz-khan, I get a lot of the following errors in my application:

 The play() request was interrupted by a new load request

The remote stream doesn't start. Browser is latest Google Chrome.

dnish avatar Aug 05 '17 00:08 dnish

Need to fix this in the v3.

var played = mediaElement.play();
if(typeof played !== 'undefined') {
    played.then(function() {
        restOfTheCode();
    });
}
else {
     restOfTheCode();
}

muaz-khan avatar Aug 05 '17 12:08 muaz-khan

@muaz-khan I'm also facing this issue.

shessafridi avatar Aug 02 '21 08:08 shessafridi