Fix playlist share url generation

This commit is contained in:
Rasmus Larsen
2019-05-10 11:06:46 +02:00
parent 4897d97931
commit 90c1930c39

View File

@@ -169,7 +169,7 @@ impl ListItem for Playlist {
fn share_url(&self) -> Option<String> {
Some(format!(
"https://open.spotify.com/user/{}/{}",
"https://open.spotify.com/user/{}/playlist/{}",
self.owner_id, self.id
))
}