Merge pull request #275 from SaraVieira/274-fix
Get error correctly in catch
This commit is contained in:
commit
5f27fc0770
1 changed files with 2 additions and 2 deletions
|
|
@ -128,8 +128,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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue