1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-25 11:02:56 +02:00

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)
}