Merge pull request #168 from lbryio/fix-status-check-logic

Correct status check logic on Watch page
This commit is contained in:
alexliebowitz 2017-02-16 01:29:36 -05:00 committed by GitHub
commit d628b9bda9

View file

@ -20,7 +20,7 @@ var WatchPage = React.createClass({
}, },
updateLoadStatus: function() { updateLoadStatus: function() {
lbry.getFileStatus(this.props.name, (status) => { lbry.getFileStatus(this.props.name, (status) => {
if (!status || ['running', 'stopped'].includes(status.code) || status.written_bytes == 0) { if (!status || !['running', 'stopped'].includes(status.code) || status.written_bytes == 0) {
// Download hasn't started yet, so update status message (if available) then try again // Download hasn't started yet, so update status message (if available) then try again
if (status) { if (status) {
this.setState({ this.setState({