Update rspotify to 0.11.3 (et al)

Also allows us to revert the previously applied fix where the market parameter had to be removed.
This commit is contained in:
Henrik Friedrichsen
2021-11-29 22:43:06 +01:00
parent ec46143d62
commit ebc49117b0
5 changed files with 38 additions and 35 deletions

View File

@@ -562,7 +562,7 @@ impl WebApi {
pub fn current_user_saved_albums(&self, offset: u32) -> Option<Page<SavedAlbum>> {
self.api_with_retry(|api| {
api.current_user_saved_albums_manual(None, Some(50), Some(offset))
api.current_user_saved_albums_manual(Some(&Market::FromToken), Some(50), Some(offset))
})
}