Skip to content

Commit

Permalink
fix: records name on get
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Oct 4, 2022
1 parent 99e4178 commit 8daa364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (p *Provider) getRecords(ctx context.Context, zoneID string, zone string) (
}
}
record := libdns.Record{
Name: libdns.AbsoluteName(*rrset.Name, zone),
Name: *rrset.Name,
Value: value,
Type: string(rtype),
TTL: time.Duration(*rrset.TTL) * time.Second,
Expand Down

0 comments on commit 8daa364

Please sign in to comment.