A personal app view to see Bsky posts of your followers (for when their app view goes down)
17
fork

Configure Feed

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

fix error reponse to return status code

Signed-off-by: Will Andrews <did:plc:dadhhalkfcq3gucaq25hjqon>

+1 -1
+1 -1
src/server.rs
··· 156 156 157 157 impl IntoResponse for XrpcErrorResponse { 158 158 fn into_response(self) -> axum::response::Response { 159 - Json(self.error).into_response() 159 + (self.status, self.error.error).into_response() 160 160 } 161 161 } 162 162