fix autoplay for transcoded files

This commit is contained in:
DispatchCommit 2021-06-22 09:44:10 -07:00 committed by jessopb
parent 5766dc34b5
commit 8ce12f8e60

View file

@ -235,10 +235,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);