diff --git a/core/src/spotify_id.rs b/core/src/spotify_id.rs index 2169ee6f..314708e8 100644 --- a/core/src/spotify_id.rs +++ b/core/src/spotify_id.rs @@ -50,7 +50,7 @@ impl SpotifyId { pub fn from_raw(data: &[u8]) -> Result { if data.len() != 16 { - return Err(SpotifyIdError) + return Err(SpotifyIdError); }; let high = BigEndian::read_u64(&data[0..8]);