Merge pull request #1209 from softworkz/AutoOrganizeErrorHandling

Auto-Organize: Display errors in client on server exceptions
This commit is contained in:
Luke
2015-10-04 23:24:13 -04:00
3 changed files with 18 additions and 9 deletions
+16 -9
View File
@@ -44,7 +44,7 @@
reloadItems(page);
});
}).fail(onApiFailure);
}
});
@@ -60,11 +60,9 @@
sortBy: 'SortName'
}).done(function (result) {
Dashboard.hideLoadingMsg();
showEpisodeCorrectionPopup(page, item, result.Items);
});
}).fail(onApiFailure);
}
@@ -129,8 +127,7 @@
reloadItems(page);
});
}).fail(onApiFailure);
}
});
@@ -160,7 +157,7 @@
reloadItems(page);
});
}).fail(onApiFailure);
}
function reloadItems(page) {
@@ -173,7 +170,7 @@
renderResults(page, result);
Dashboard.hideLoadingMsg();
});
}).fail(onApiFailure);
}
@@ -333,6 +330,16 @@
}
}
function onApiFailure(e) {
Dashboard.hideLoadingMsg();
Dashboard.alert({
title: Globalize.translate('AutoOrganizeError'),
message: e.status + ' - ' + e.statusText + '<br>' + e.getResponseHeader("X-Application-Error-Code")
});
}
function onEpisodeCorrectionFormSubmit() {
submitEpisodeForm(this);
return false;
@@ -346,7 +353,7 @@
ApiClient.clearOrganizationLog().done(function () {
reloadItems(page);
});
}).fail(onApiFailure);
});
@@ -256,6 +256,7 @@
"HeaderSelectWatchFolder": "Select Watch Folder",
"HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.",
"OrganizePatternResult": "Result: {0}",
"AutoOrganizeError": "Error Organizing File",
"HeaderRestart": "Restart",
"HeaderShutdown": "Shutdown",
"MessageConfirmRestart": "Are you sure you wish to restart Emby Server?",
@@ -259,6 +259,7 @@
"HeaderSelectWatchFolder": "Select Watch Folder",
"HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.",
"OrganizePatternResult": "Result: {0}",
"AutoOrganizeError": "Error Organizing File",
"HeaderRestart": "Restart",
"HeaderShutdown": "Shutdown",
"MessageConfirmRestart": "Are you sure you wish to restart Emby Server?",