forked from TrueCloudLab/lego
Log wildcard domain correctly in validation (#773)
This commit is contained in:
parent
0574362e13
commit
68568b7ded
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue