1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-07 21:37:04 +09:00

Fix recursive call

This commit is contained in:
mcrakhman 2022-01-14 10:19:52 +01:00
parent 78e1d52472
commit fdd605cfbe
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B

View file

@ -72,5 +72,5 @@ func (r *Resolver) LookupIPAddr(ctx context.Context, s string) ([]net.IPAddr, er
}
func (r *Resolver) LookupTXT(ctx context.Context, s string) ([]string, error) {
return r.LookupTXT(ctx, s)
return r.r.LookupTXT(ctx, s)
}