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
···363 let status = response.status().as_u16();
364 let data = response.text().await?;
365366- println!("> Currently playing: {}", data);
00367368 if status == 429 {
369 println!(
···363 let status = response.status().as_u16();
364 let data = response.text().await?;
365366+ if !data.contains("is_playing") && !data.contains("context") {
367+ println!("> Currently playing: {}", data);
368+ }
369370 if status == 429 {
371 println!(