Sasha Hilton před 7 roky
rodič
revize
197d80edbf
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      core/src/spotify_id.rs

+ 1 - 1
core/src/spotify_id.rs

@@ -50,7 +50,7 @@ impl SpotifyId {
 
 
     pub fn from_raw(data: &[u8]) -> Result<SpotifyId, SpotifyIdError> {
     pub fn from_raw(data: &[u8]) -> Result<SpotifyId, SpotifyIdError> {
         if data.len() != 16 {
         if data.len() != 16 {
-            return Err(SpotifyIdError)
+            return Err(SpotifyIdError);
         };
         };
 
 
         let high = BigEndian::read_u64(&data[0..8]);
         let high = BigEndian::read_u64(&data[0..8]);