MDL-83653 file manager: report ajax errors

This is for things like when you click on a file, and then click on
the delete button, and an error happens then. Previously that was
ignored.
This commit is contained in:
Tim Hunt 2024-11-08 16:18:21 +00:00
parent 2b337b49f9
commit 09aacafb9e

View File

@ -177,6 +177,12 @@ M.form_filemanager.init = function(Y, options) {
var data = null;
try {
data = Y.JSON.parse(o.responseText);
if (data.error) {
Y.use('moodle-core-notification-ajaxexception', function() {
return new M.core.ajaxException(data);
});
return;
}
} catch(e) {
scope.print_msg(M.util.get_string('invalidjson', 'repository'), 'error');
Y.error(M.util.get_string('invalidjson', 'repository')+":\n"+o.responseText);