Skip to content
Snippets Groups Projects
Commit 17288401 authored by Thomas Schneider's avatar Thomas Schneider
Browse files

main: Fix assignment to nil map

parent d6c3fbd2
Branches
No related tags found
No related merge requests found
Pipeline #4146 passed
...@@ -66,7 +66,7 @@ func (s *solver) CleanUp(ch *whapi.ChallengeRequest) error { ...@@ -66,7 +66,7 @@ func (s *solver) CleanUp(ch *whapi.ChallengeRequest) error {
} }
var lastErr error var lastErr error
var zones map[int]interface{} zones := map[int]interface{}{}
for _, r := range records { for _, r := range records {
if r.Type != "txt_record" { if r.Type != "txt_record" {
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment