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

@@ -439,7 +439,7 @@ impl Library {
.items
.iter()
.enumerate()
.any(|(i, t)| Some(t.track.id.id().to_string()) != store[i].id)
.any(|(i, t)| t.track.id.as_ref().map(|id| id.to_string()) != store[i].id)
{
return;
}