[GH-ISSUE #227] playlist_unfollow, playlist_change_detail take a &str for the Id, but it should be an Id type #75

Closed
opened 2026-02-27 20:22:58 +03:00 by kerem · 0 comments
Owner

Originally created by @marioortizmanero on GitHub (Jul 14, 2021).
Original GitHub issue: https://github.com/ramsayleung/rspotify/issues/227

Originally assigned to: @marioortizmanero on GitHub.

Describe the bug
Current signature:

async fn playlist_unfollow(&self, playlist_id: &str) -> ClientResult<String>

should be something like:

async fn playlist_unfollow(&self, playlist_id: &PlaylistId) -> ClientResult<String>
Originally created by @marioortizmanero on GitHub (Jul 14, 2021). Original GitHub issue: https://github.com/ramsayleung/rspotify/issues/227 Originally assigned to: @marioortizmanero on GitHub. **Describe the bug** Current signature: ```rust async fn playlist_unfollow(&self, playlist_id: &str) -> ClientResult<String> ``` should be something like: ```rust async fn playlist_unfollow(&self, playlist_id: &PlaylistId) -> ClientResult<String> ```
kerem 2026-02-27 20:22:58 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/rspotify#75
No description provided.