+1
-1
automod/capture/fetch.go
+1
-1
automod/capture/fetch.go
···
63
63
}
64
64
pdsClient := xrpc.Client{Host: pdsURL}
65
65
66
-
resp, err := comatproto.RepoListRecords(ctx, &pdsClient, "app.bsky.feed.post", "", int64(limit), ident.DID.String(), false, "", "")
66
+
resp, err := comatproto.RepoListRecords(ctx, &pdsClient, "app.bsky.feed.post", "", int64(limit), ident.DID.String(), false)
67
67
if err != nil {
68
68
return nil, nil, fmt.Errorf("failed to fetch record list: %v", err)
69
69
}
+2
-2
cmd/astrolabe/handlers.go
+2
-2
cmd/astrolabe/handlers.go
···
164
164
}
165
165
166
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, "", "")
167
+
// collection string, cursor string, limit int64, repo string, reverse bool
168
+
resp, err := agnostic.RepoListRecords(ctx, &xrpcc, collection.String(), cursor, 100, ident.DID.String(), false)
169
169
if err != nil {
170
170
return err
171
171
}
+2
-2
cmd/goat/lexicon.go
+2
-2
cmd/goat/lexicon.go
···
242
242
// NOTE: much of this code is copied from runRecordList
243
243
cursor := ""
244
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, "", "")
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
247
if err != nil {
248
248
return err
249
249
}
+2
-2
cmd/goat/record.go
+2
-2
cmd/goat/record.go
···
179
179
for _, nsid := range collections {
180
180
cursor := ""
181
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, "", "")
182
+
// collection string, cursor string, limit int64, repo string, reverse bool
183
+
resp, err := agnostic.RepoListRecords(ctx, &xrpcc, nsid, cursor, 100, ident.DID.String(), false)
184
184
if err != nil {
185
185
return err
186
186
}