Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/e68fe9033d535edd82a4ba08d59e43d4f96fe0c9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

If nzbdrone restarts mid command the client will treat it as failed

pull/2/head
Mark McDowall 12 years ago
parent 0894fc0e77
commit e68fe9033d

@ -67,6 +67,10 @@ define(
var command = CommandCollection.find({ 'id': trackedCommand.id });
if (!command) {
trackedCommand.completed = true;
self._onError(options, trackedCommand.id);
self._onComplete(options);
return;
}
@ -75,6 +79,7 @@ define(
self._onSuccess(options, command.get('id'));
self._onComplete(options);
return;
}
if (command.get('state') === 'failed') {

Loading…
Cancel
Save