From a39d0fc449fec910a67116796126df7e57075a64 Mon Sep 17 00:00:00 2001 From: zdm Date: Thu, 20 Jun 2024 22:26:26 +0300 Subject: [PATCH] fix: build certificates --- build/lib/local.softvisio.net.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/lib/local.softvisio.net.js b/build/lib/local.softvisio.net.js index c349779..e90146f 100644 --- a/build/lib/local.softvisio.net.js +++ b/build/lib/local.softvisio.net.js @@ -114,7 +114,7 @@ export default class Datasets extends ExternalResourceBuilder { async #getDomainZone ( domain ) { const res = await cloudflareApi.getZones(); - if ( !res.ok ) return; + if ( !res.ok ) return res; for ( const zone of res.data ) { if ( domain === zone.name || domain.endsWith( `.${ zone.name }` ) ) {