Fix non-pointer unmarshal

This commit is contained in:
Elara 2024-03-17 19:16:43 -07:00
parent 7161f649fa
commit 7025f0abbb
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ func (c Client) LookupWebFingerID(wfdesc *webfinger.Descriptor, id string) (*Des
// descriptor rather than looking one up.
func (c Client) LookupAllWebFinger(wfdesc *webfinger.Descriptor) (map[string]*Descriptor, error) {
out := map[string]*Descriptor{}
return out, c.lookup(wfdesc, "", true, out)
return out, c.lookup(wfdesc, "", true, &out)
}
func (c Client) lookup(wfdesc *webfinger.Descriptor, id string, all bool, dest any) error {