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

fix(consumer): chat decls use repo as pkey not at_uri

Changed files
+1 -1
consumer
src
indexer
+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