Fix an error when video playback buffer is empty (#5300)

pull/5302/head
unarist 7 years ago committed by Eugen Rochko
parent 6c54d2e583
commit 784c7510d7

@ -210,8 +210,10 @@ export default class Video extends React.PureComponent {
} }
handleProgress = () => { handleProgress = () => {
if (this.video.buffered.length > 0) {
this.setState({ buffer: this.video.buffered.end(0) / this.video.duration * 100 }); this.setState({ buffer: this.video.buffered.end(0) / this.video.duration * 100 });
} }
}
handleOpenVideo = () => { handleOpenVideo = () => {
this.video.pause(); this.video.pause();

Loading…
Cancel
Save