Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview atproto bluesky rust appserver
66
fork

Configure Feed

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

fix(parakeet): return block AT URI for viewer relations

Mia d9c93518 6002d4ed

+3 -1
+3 -1
parakeet/src/hydration/profile.rs
··· 51 51 .followed 52 52 .map(|rkey| format!("at://{}/app.bsky.graph.follow/{rkey}", data.subject)); 53 53 54 - let blocking = data.list_block.or(data.blocking); 54 + let blocking = data.list_block.or(data 55 + .blocking 56 + .map(|rkey| format!("at://{}/app.bsky.graph.block/{rkey}", data.did))); 55 57 56 58 ProfileViewerState { 57 59 muted: data.muting.unwrap_or_default(),