fix(linode): name field when creating record

This commit is contained in:
Quentin McGaw
2022-09-04 03:00:53 +00:00
parent 251112697a
commit f09ca2dd0a

View File

@@ -252,7 +252,7 @@ func (p *Provider) createRecord(ctx context.Context, client *http.Client,
requestData := domainRecord{
Type: recordType,
Host: p.host,
Host: p.BuildDomainName(),
IP: ip.String(),
}
buffer := bytes.NewBuffer(nil)