fix autoplay for transcoded files

This commit is contained in:
DispatchCommit 2021-06-22 09:44:10 -07:00 committed by jessopb
parent 57c8f44744
commit fdd9b01513

View file

@ -234,10 +234,13 @@ function VideoViewer(props: Props) {
Promise.race([playPromise, timeoutPromise]).catch((error) => {
if (typeof error === 'object' && error.name && error.name === 'NotAllowedError') {
// Autoplay disallowed by browser
player.play();
}
// Autoplay failed
if (PLAY_TIMEOUT_ERROR) {
// Autoplay failed
setIsLoading(false);
setIsPlaying(false);
} else {
setIsLoading(false);
setIsPlaying(false);