A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

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

fix: linting error

Trezy d9e8fc33 441b34ea

+2 -4
+2 -4
src/record_refs.rs
··· 11 11 12 12 fn collect_at_uris(value: &Value, uris: &mut HashSet<String>) { 13 13 match value { 14 - Value::String(s) => { 15 - if s.starts_with("at://") { 16 - uris.insert(s.clone()); 17 - } 14 + Value::String(s) if s.starts_with("at://") => { 15 + uris.insert(s.clone()); 18 16 } 19 17 Value::Array(arr) => { 20 18 for item in arr {