diff --git a/ui/js/component/video/view.jsx b/ui/js/component/video/view.jsx index f5cd375bd..3157c535d 100644 --- a/ui/js/component/video/view.jsx +++ b/ui/js/component/video/view.jsx @@ -16,7 +16,7 @@ class Video extends React.PureComponent { componentWillReceiveProps(nextProps) { // reset playing state upon change path action - if (!this.isMediaSame(nextProps) && this.state.isPlaying) { + if (!this.isMediaSame(nextProps) && this.props.fileInfo && this.state.isPlaying) { this.state.isPlaying = false; } }