Files
squeezelite-esp32/components/wifi-manager/webapp/src/js/utils.ts
2025-03-18 17:38:34 -04:00

12 lines
288 B
TypeScript

function handleExceptionResponse(xhr: JQuery.jqXHR<any>
, _ajaxOptions: JQuery.Ajax.ErrorTextStatus, thrownError: string) {
console.log(xhr.status);
console.log(thrownError);
if (thrownError !== '') {
showLocalMessage(thrownError, 'MESSAGING_ERROR');
}
}