From 0c9160a196caca538f03d5ac11a9f4f748a60181 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 30 Oct 2019 11:51:48 -0400 Subject: [PATCH] Update src/commands/cwg.ts --- src/commands/cwg.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/cwg.ts b/src/commands/cwg.ts index 11c9801..1f423a1 100644 --- a/src/commands/cwg.ts +++ b/src/commands/cwg.ts @@ -126,11 +126,13 @@ export default class CWG extends Command { }); this.client.signale.debug(resultID.data); const recordID = resultID.data.result[0].id; - await axios({ + if (resultID.data.result[0]) { + await axios({ method: 'delete', url: `https://api.cloudflare.com/client/v4/zones/5e82fc3111ed4fbf9f58caa34f7553a7/dns_records/${recordID}`, headers: { Authorization: `Bearer ${this.client.config.cloudflare}` }, }); + } } await fs.unlink(`/etc/nginx/sites-available/${domain.domain}`); await fs.unlink(`/etc/nginx/sites-enabled/${domain.domain}`);