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(consumer): chat decls use repo as pkey not at_uri

Mia 045771c2 a350f43a

+1 -1
+1 -1
consumer/src/indexer/mod.rs
··· 775 775 } 776 776 CollectionType::BskyVerification => db::verification_delete(conn, at_uri).await?, 777 777 CollectionType::BskyLabelerService => db::labeler_delete(conn, at_uri).await?, 778 - CollectionType::ChatActorDecl => db::chat_decl_delete(conn, at_uri).await?, 778 + CollectionType::ChatActorDecl => db::chat_decl_delete(conn, repo).await?, 779 779 _ => unreachable!(), 780 780 }; 781 781