+1
-1
automod/capture/fetch.go
+1
-1
automod/capture/fetch.go
+2
-2
cmd/astrolabe/handlers.go
+2
-2
cmd/astrolabe/handlers.go
···
164
}
165
166
cursor := c.QueryParam("cursor")
167
-
// collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string
168
-
resp, err := agnostic.RepoListRecords(ctx, &xrpcc, collection.String(), cursor, 100, ident.DID.String(), false, "", "")
169
if err != nil {
170
return err
171
}
+2
-2
cmd/goat/lexicon.go
+2
-2
cmd/goat/lexicon.go
···
242
// NOTE: much of this code is copied from runRecordList
243
cursor := ""
244
for {
245
-
// collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string
246
-
resp, err := agnostic.RepoListRecords(ctx, &xrpcc, "com.atproto.lexicon.schema", cursor, 100, ident.DID.String(), false, "", "")
247
if err != nil {
248
return err
249
}
···
242
// NOTE: much of this code is copied from runRecordList
243
cursor := ""
244
for {
245
+
// collection string, cursor string, limit int64, repo string, reverse bool
246
+
resp, err := agnostic.RepoListRecords(ctx, &xrpcc, "com.atproto.lexicon.schema", cursor, 100, ident.DID.String(), false)
247
if err != nil {
248
return err
249
}
+2
-2
cmd/goat/record.go
+2
-2
cmd/goat/record.go
···
179
for _, nsid := range collections {
180
cursor := ""
181
for {
182
-
// collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string
183
-
resp, err := agnostic.RepoListRecords(ctx, &xrpcc, nsid, cursor, 100, ident.DID.String(), false, "", "")
184
if err != nil {
185
return err
186
}