alpha
Login
or
Join now
willdot.net
/
distributed-pds
forked from
willdot.net/cocoon
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A fork of the Cocoon PDS but being made more distributed.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix adding cursor to response
author
Hailey
date
1 year ago
(Mar 31, 2025, 5:28 PM -0700)
commit
8ba8ee7e
8ba8ee7eb12ab03302379fae3c3eed20e2a814a2
parent
bd2c9253
bd2c9253f9396009013096ad4cc5e89da295a959
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
server
handle_repo_list_records.go
+1
-1
server/handle_repo_list_records.go
Reviewed
···
84
84
}
85
85
86
86
var newcursor *string
87
87
-
if len(records) == 50 {
87
87
+
if len(records) == limit {
88
88
newcursor = to.StringPtr(records[len(records)-1].CreatedAt)
89
89
}
90
90