A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
98
fork

Configure Feed

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

[scrobbler] log errors

+1 -1
+1 -1
crates/scrobbler/src/handlers/mod.rs
··· 117 117 let body = String::from_utf8_lossy(&payload); 118 118 let req = serde_json::from_str::<SubmitListensRequest>(&body) 119 119 .map_err(|e| { 120 - println!("{}", payload); 120 + println!("{}", body); 121 121 println!("Error parsing request body: {}", e); 122 122 e 123 123 })