An atproto PDS written in Go

fix adding cursor to response

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