Log wildcard domain correctly in validation (#773)

This commit is contained in:
Danek Duvall 2019-01-25 16:11:45 -08:00 committed by Ludovic Fernandez
parent 0574362e13
commit 68568b7ded
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ func (c *Challenge) Solve(authz acme.Authorization) error {
}
chlng.KeyAuthorization = keyAuth
return c.validate(c.core, authz.Identifier.Value, chlng)
return c.validate(c.core, domain, chlng)
}
// CleanUp cleans the challenge.

View file

@ -61,5 +61,5 @@ func (c *Challenge) Solve(authz acme.Authorization) error {
}()
chlng.KeyAuthorization = keyAuth
return c.validate(c.core, authz.Identifier.Value, chlng)
return c.validate(c.core, domain, chlng)
}