From f070baf914f74695fab0673db949eb3ef5df496f Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Wed, 15 Feb 2017 17:24:30 -0500 Subject: [PATCH] Watch: correct status check to look for "stopped" instead of "paused" --- js/page/watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/page/watch.js b/js/page/watch.js index a3b1b7f82..24bc1524c 100644 --- a/js/page/watch.js +++ b/js/page/watch.js @@ -20,7 +20,7 @@ var WatchPage = React.createClass({ }, updateLoadStatus: function() { lbry.getFileStatus(this.props.name, (status) => { - if (!status || ['running', 'paused'].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({