mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
Fix Spotify.user_playlist_reorder_items parameter order (#628)
* Fix Spotify.user_playlist_reorder_items * Update CHANGELOG.md
This commit is contained in:
parent
9550c8fd86
commit
3ae3d8cab1
@ -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
|
||||||
|
|||||||
@ -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(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user