tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

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

feat(server): error on unknwn cmd

dusk e28fd9c4 d7265904

+5 -1
+5 -1
server/src/main.rs
··· 44 44 debug(); 45 45 return; 46 46 } 47 - _ => {} 47 + Some(x) => { 48 + tracing::error!("unknown command: {}", x); 49 + return; 50 + } 51 + None => {} 48 52 } 49 53 50 54 let db = Arc::new(Db::new(".fjall_data").expect("couldnt create db"));