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): default adult_only correctly

Mia 745ab2bd 84aa8611

+1 -1
+1 -1
consumer/src/db/labels.rs
··· 32 32 let default_setting = definition 33 33 .and_then(|v| v.default_setting) 34 34 .map(|v| v.to_string()); 35 - let adult_only = definition.and_then(|v| v.adult_only); 35 + let adult_only = definition.and_then(|v| v.adult_only).unwrap_or_default(); 36 36 let locales = definition.and_then(|v| serde_json::to_value(&v.locales).ok()); 37 37 38 38 conn.execute(