Parakeet is a Rust-based Bluesky AppView aiming to implement most of the functionality required to support the Bluesky client

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

handle.invalid d9c93518 6002d4ed

verified
Changed files
+3 -1
parakeet
src
hydration
+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(),