Fix Spotify.user_playlist_reorder_items parameter order (#628)

* Fix Spotify.user_playlist_reorder_items

* Update CHANGELOG.md
This commit is contained in:
Peter DeVita 2020-12-26 02:46:58 -05:00 committed by GitHub
parent 9550c8fd86
commit 3ae3d8cab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support `market` optional parameter in `track` - Support `market` optional parameter in `track`
- Added CacheHandler abstraction to allow users to cache tokens in any way they see fit - Added CacheHandler abstraction to allow users to cache tokens in any way they see fit
### Fixed
- Fixed Spotify.user_playlist_reorder_tracks calling Spotify.playlist_reorder_tracks with an incorrect parameter order
## [2.16.1] - 2020-10-24 ## [2.16.1] - 2020-10-24
### Fixed ### Fixed

View File

@ -874,7 +874,7 @@ class Spotify(object):
DeprecationWarning, DeprecationWarning,
) )
return self.playlist_reorder_items(playlist_id, range_start, return self.playlist_reorder_items(playlist_id, range_start,
range_length, insert_before, insert_before, range_length,
snapshot_id) snapshot_id)
def user_playlist_remove_all_occurrences_of_tracks( def user_playlist_remove_all_occurrences_of_tracks(