get error correctly; closes 274

This commit is contained in:
Sara Vieira 2022-04-02 22:21:22 +02:00
parent 986c5b7133
commit b814c6e563

View File

@ -110,8 +110,8 @@
await post(`/applications/${id}/check.json`, { fqdn: application.fqdn, forceSave });
await post(`/applications/${id}.json`, { ...application });
return window.location.reload();
} catch ({ error }) {
if (error.startsWith('DNS not set')) {
} catch (error) {
if (error?.startsWith('DNS not set')) {
forceSave = true;
}
return errorNotification(error);