very fast at protocol indexer with flexible filtering, xrpc queries, cursor-backed event stream, and more, built on fjall
rust fjall at-protocol atproto indexer
58
fork

Configure Feed

Select the types of activity you want to include in your feed.

[crawler] fix not using Done cursor

dawn 4e627267 27232a8c

+1 -1
+1 -1
src/crawler/mod.rs
··· 372 372 list_repos_url 373 373 .query_pairs_mut() 374 374 .append_pair("limit", "1000"); 375 - if let Cursor::Next(Some(c)) = &cursor { 375 + if let Cursor::Next(Some(c)) | Cursor::Done(c) = &cursor { 376 376 list_repos_url 377 377 .query_pairs_mut() 378 378 .append_pair("cursor", c.as_str());