diff --git a/connect/src/state/tracks.rs b/connect/src/state/tracks.rs index 81dd3878..fae36bc8 100644 --- a/connect/src/state/tracks.rs +++ b/connect/src/state/tracks.rs @@ -128,8 +128,6 @@ impl<'ct> ConnectState { }; }; - debug!("next track is {new_track:#?}"); - let new_track = match new_track { None => return Ok(None), Some(t) => t, diff --git a/core/src/dealer/protocol.rs b/core/src/dealer/protocol.rs index e6b7f2dc..d450dfa7 100644 --- a/core/src/dealer/protocol.rs +++ b/core/src/dealer/protocol.rs @@ -175,6 +175,8 @@ fn handle_transfer_encoding( let encoding = headers.get("Transfer-Encoding").map(String::as_str); if let Some(encoding) = encoding { trace!("message was send with {encoding} encoding "); + } else { + trace!("message was send with no encoding "); } if !matches!(encoding, Some("gzip")) { diff --git a/core/src/spclient.rs b/core/src/spclient.rs index c818570a..5af77394 100644 --- a/core/src/spclient.rs +++ b/core/src/spclient.rs @@ -820,7 +820,7 @@ impl SpClient { /// **will** contain the query /// - artists /// - returns 2 pages with tracks: 10 most popular tracks and latest/popular album - /// - remaining pages are albums of the artists and are only provided as page_url + /// - remaining pages are artist albums sorted by popularity (only provided as page_url) /// - search /// - is massively influenced by the provided query /// - the query result shown by the search expects no query at all