Merge branch 'master' into develop

isekai-main
Barış Soner Uşaklı 2 years ago
commit 29f77a8829

@ -18,7 +18,7 @@ define('admin/settings/general', ['admin/settings'], function () {
$('input[data-field="brand:maskableIcon"]').val(''); $('input[data-field="brand:maskableIcon"]').val('');
}); });
$('button[data-action="removeOgImage"]').on('click', function () { $('button[data-action="removeOgImage"]').on('click', function () {
$('input[data-field="removeOgImage"]').val(''); $('input[data-field="og:image"]').val('');
}); });
$('[data-field="homePageRoute"]').on('change', toggleCustomRoute); $('[data-field="homePageRoute"]').on('change', toggleCustomRoute);

@ -69,18 +69,23 @@ async function xhr(options, cb) {
const isJSON = contentType && contentType.startsWith('application/json'); const isJSON = contentType && contentType.startsWith('application/json');
let response; let response;
if (options.method !== 'head') {
if (isJSON) { if (isJSON) {
response = await res.json(); response = await res.json();
} else { } else {
response = await res.text(); response = await res.text();
} }
}
if (!res.ok) { if (!res.ok) {
if (response) {
return cb(new Error(isJSON ? response.status.message : response)); return cb(new Error(isJSON ? response.status.message : response));
} }
return cb(new Error(res.statusText));
}
cb(null, ( cb(null, (
isJSON && response.hasOwnProperty('status') && response.hasOwnProperty('response') ? isJSON && response && response.hasOwnProperty('status') && response.hasOwnProperty('response') ?
response.response : response.response :
response response
)); ));

Loading…
Cancel
Save