Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions download.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,10 @@ func fetchRecords(endpoint string, zone string, from int64, end int64, limit int
from = key
}
}

if limit == 0 {
break
}
}

for _, item = range data {
Expand Down