Add error message when settings could not be saved to the server.

This commit is contained in:
SillyLossy
2023-05-24 17:14:54 +03:00
parent 3ba4f3c6e2
commit ae374510c1

View File

@ -3991,6 +3991,7 @@ async function saveSettings(type) {
}
},
error: function (jqXHR, exception) {
toastr.error('Check the server connection and reload the page to prevent data loss.', 'Settings could not be saved');
console.log(exception);
console.log(jqXHR);
},