Skip to content

Commit

Permalink
[Test] Add Timeout to Subscribe Again
Browse files Browse the repository at this point in the history
  • Loading branch information
jaruba committed May 30, 2024
1 parent 7c4cd2d commit d352b03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/WebOsVideo/WebOsVideo.js
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,9 @@ function WebOsVideo(options) {
knownMediaId = videoElement.mediaId;
clearInterval(timer);

subscribe(cb);
setTimeout(function() {
subscribe(cb);
}, 500)

return;
}
Expand Down

0 comments on commit d352b03

Please sign in to comment.