Skip to content

Commit

Permalink
Use correct zone ID in records
Browse files Browse the repository at this point in the history
* Fixes #4

Signed-off-by: Marvin A. Ruder <signed@mruder.dev>
  • Loading branch information
marvinruder committed Sep 16, 2023
1 parent c9ed111 commit c8d7301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (z *Zone) Records(ctx context.Context) ([]Record, error) {
for i := range records {
r := &records[i]
r.c = z.c
r.zoneID = r.ID
r.zoneID = z.ID
}

return records, nil
Expand Down

0 comments on commit c8d7301

Please sign in to comment.