Select the types of activity you want to include in your feed.
Avoid logging full playback JSON on normal responses
Only print the "Currently playing" response when the returned data does not contain both "is_playing" and "context", reducing noisy output for normal playback responses
···363363 let status = response.status().as_u16();
364364 let data = response.text().await?;
365365366366- println!("> Currently playing: {}", data);
366366+ if !data.contains("is_playing") && !data.contains("context") {
367367+ println!("> Currently playing: {}", data);
368368+ }
367369368370 if status == 429 {
369371 println!(