mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 16:43:58 -07:00
removed some false/positive error message from the UI.
This commit is contained in:
parent
e2d17ac109
commit
53bb6254fd
2 changed files with 11 additions and 5 deletions
|
@ -52,7 +52,10 @@ define(['app', 'Config', 'Commands/CommandController', 'Shared/Messenger'], func
|
|||
}
|
||||
});
|
||||
|
||||
commandPromise.fail(function () {
|
||||
commandPromise.fail(function (options) {
|
||||
if (options.readyState === 0 || options.status === 0) {
|
||||
return;
|
||||
}
|
||||
if (self.model.get('errorMessage')) {
|
||||
NzbDrone.Shared.Messenger.show({
|
||||
message: self.model.get('errorMessage'),
|
||||
|
@ -62,9 +65,11 @@ define(['app', 'Config', 'Commands/CommandController', 'Shared/Messenger'], func
|
|||
});
|
||||
|
||||
commandPromise.always(function () {
|
||||
self.$el.removeClass('disabled');
|
||||
self.ui.icon.removeClass('icon-spinner icon-spin');
|
||||
self.idle = true;
|
||||
if (!self.isClosed) {
|
||||
self.$el.removeClass('disabled');
|
||||
self.ui.icon.removeClass('icon-spinner icon-spin');
|
||||
self.idle = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue