Merge pull request #275 from SaraVieira/274-fix

Get error correctly in catch
This commit is contained in:
Andras Bacsai 2022-04-02 22:35:13 +02:00 committed by GitHub
commit 5f27fc0770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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