Skip to content

Commit

Permalink
dont blow up if domain not present after delete
Browse files Browse the repository at this point in the history
  • Loading branch information
MattDHill committed Jan 16, 2025
1 parent 3f01e81 commit 6825120
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ function getAddresses(
if (hostnameKind === 'domain') {
name = 'Domain'
isDomain = true
acme = host.domains[h.hostname.domain].acme
acme = host.domains[h.hostname.domain]?.acme
} else {
name =
hostnameKind === 'local'
Expand Down

0 comments on commit 6825120

Please sign in to comment.