this repo has no description

fix adding cursor to response

Hailey 8ba8ee7e bd2c9253

Changed files
+1 -1
server
+1 -1
server/handle_repo_list_records.go
··· 84 } 85 86 var newcursor *string 87 - if len(records) == 50 { 88 newcursor = to.StringPtr(records[len(records)-1].CreatedAt) 89 } 90
··· 84 } 85 86 var newcursor *string 87 + if len(records) == limit { 88 newcursor = to.StringPtr(records[len(records)-1].CreatedAt) 89 } 90