From d47cc75dc6ad9b33a5b9e37371f79fedf4258598 Mon Sep 17 00:00:00 2001 From: Michael Pivonka Date: Mon, 2 Mar 2020 06:36:27 -0500 Subject: [PATCH] Fixed formatting --- core/src/spotify_id.rs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/core/src/spotify_id.rs b/core/src/spotify_id.rs index 614d5f60..0982f9cb 100644 --- a/core/src/spotify_id.rs +++ b/core/src/spotify_id.rs @@ -106,15 +106,9 @@ impl SpotifyId { pub fn to_uri(&self) -> String { match self.audio_type { - SpotifyAudioType::Track => { - format!("spotify:track:{}", self.to_base62()) - } - SpotifyAudioType::Podcast => { - format!("spotify:episode:{}", self.to_base62()) - } - SpotifyAudioType::NonPlayable => { - format!("spotify:unknown:{}", self.to_base62()) - } + SpotifyAudioType::Track => format!("spotify:track:{}", self.to_base62()), + SpotifyAudioType::Podcast => format!("spotify:episode:{}", self.to_base62()), + SpotifyAudioType::NonPlayable => format!("spotify:unknown:{}", self.to_base62()), } }