Skip to content

Commit b11bb0b

Browse files
committed
fix: Resolve issues with deserializing Spotify response when adding tracks to playlists
1 parent cf48cdb commit b11bb0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/publishers/spotify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ impl SpotifyClient {
8080
playlist_id: impl ToString,
8181
track_uris: Vec<String>,
8282
) -> Result<(), human_errors::Error> {
83-
let _: () = self
83+
let _: serde_json::Value = self
8484
.call_spotify(
8585
reqwest::Method::POST,
8686
format!("playlists/{}/tracks", playlist_id.to_string()),

0 commit comments

Comments
 (0)