Watch: correct status check logic
This commit is contained in:
parent
f070baf914
commit
ee44ce5001
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ var WatchPage = React.createClass({
|
|||
},
|
||||
updateLoadStatus: function() {
|
||||
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
|
||||
if (status) {
|
||||
this.setState({
|
||||
|
|
Loading…
Reference in a new issue