Skip to content

Commit

Permalink
fix: build certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
zdm committed Jun 20, 2024
1 parent 8d7b000 commit a39d0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/lib/local.softvisio.net.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }` ) ) {
Expand Down

0 comments on commit a39d0fc

Please sign in to comment.