mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
Allow both id types in playlist_change_details (#649)
This commit is contained in:
parent
be399fd089
commit
d001326cc3
@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## Unreleased
|
||||
|
||||
// Add your changes here and then delete this line
|
||||
- Enabled using both short and long IDs for playlist_change_details
|
||||
|
||||
## [2.17.1] - 2021-02-28
|
||||
|
||||
|
||||
@ -996,7 +996,7 @@ class Spotify(object):
|
||||
if isinstance(description, six.string_types):
|
||||
data["description"] = description
|
||||
return self._put(
|
||||
"playlists/%s" % (playlist_id), payload=data
|
||||
"playlists/%s" % (self._get_id("playlist", playlist_id)), payload=data
|
||||
)
|
||||
|
||||
def current_user_unfollow_playlist(self, playlist_id):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user