diff --git a/CHANGELOG.md b/CHANGELOG.md index bfb835b..636c35c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/spotipy/client.py b/spotipy/client.py index e5bc0e7..95e2aa7 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -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):