mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
Merge pull request #1209 from softworkz/AutoOrganizeErrorHandling
Auto-Organize: Display errors in client on server exceptions
This commit is contained in:
commit
4bc4e81c51
@ -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?",
|
||||
|
Loading…
Reference in New Issue
Block a user