printer on atproto
4
fork

Configure Feed

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

allow commenting in allowed dids file

dawn 3457b34e f222d83a

+1 -1
+1 -1
src/main.rs
··· 89 89 .await 90 90 .into_diagnostic()? 91 91 .lines() 92 - .map(|l| l.trim().to_string()) 92 + .map(|l| l.find('#').map_or(l, |i| &l[..i]).trim().to_string()) 93 93 .filter(|l| !l.is_empty()) 94 94 .collect(); 95 95