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
59
fork

Configure Feed

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

[backlinks] fix Uri -> UriValue

dawn 29a25c48 a121ef17

+3 -3
+3 -3
src/backlinks/links.rs
··· 1 1 use jacquard_common::Data; 2 2 use jacquard_common::types::string::AtprotoStr; 3 - use jacquard_common::types::uri::Uri; 3 + use jacquard_common::types::uri::UriValue; 4 4 use smol_str::{SmolStr, format_smolstr}; 5 5 6 6 pub struct Link { ··· 32 32 let target = match s { 33 33 AtprotoStr::AtUri(uri) => uri.as_str(), 34 34 AtprotoStr::Did(did) => did.as_str(), 35 - AtprotoStr::Uri(Uri::At(uri)) => uri.as_str(), 36 - AtprotoStr::Uri(Uri::Did(did)) => did.as_str(), 35 + AtprotoStr::Uri(UriValue::At(uri)) => uri.as_str(), 36 + AtprotoStr::Uri(UriValue::Did(did)) => did.as_str(), 37 37 _ => return, 38 38 }; 39 39 links.push(Link {