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

This commit is contained in:
unarist 2017-10-10 22:17:53 +09:00 committed by Eugen Rochko
parent 6c54d2e583
commit 784c7510d7

View file

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