Skip to content

Commit

Permalink
fix: nil map
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Aug 20, 2024
1 parent 5e676e3 commit 34261ab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions providers/dns/mittwald/mittwald.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
}

return &DNSProvider{
config: config,
client: internal.NewClient(config.Token),
config: config,
client: internal.NewClient(config.Token),
zoneIDs: map[string]string{},
}, nil
}

Expand Down

0 comments on commit 34261ab

Please sign in to comment.