Change Watch page to recognize "stopped" status as playable
This commit is contained in:
parent
227e23653d
commit
77830d1fb2
1 changed files with 1 additions and 1 deletions
|
@ -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 || status.code != 'running' || 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({
|
||||||
|
|
Loading…
Add table
Reference in a new issue