mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Add missing semicolon.
Somehow syntex allows this, so it was missed in the previous commit.
This commit is contained in:
parent
ac5b34927f
commit
60db12ee9e
1 changed files with 2 additions and 2 deletions
|
@ -217,7 +217,7 @@ impl PlayerInternal {
|
|||
AudioDecrypt::new(key,
|
||||
self.session.audio_file(file_id)), 0xa7)).unwrap());
|
||||
|
||||
vorbis_time_seek_ms(decoder.as_mut().unwrap(), position as i64).unwrap()
|
||||
vorbis_time_seek_ms(decoder.as_mut().unwrap(), position as i64).unwrap();
|
||||
|
||||
self.update(|state| {
|
||||
state.status = if play {
|
||||
|
@ -234,7 +234,7 @@ impl PlayerInternal {
|
|||
println!("Load Done");
|
||||
}
|
||||
Some(PlayerCommand::Seek(position)) => {
|
||||
vorbis_time_seek_ms(decoder.as_mut().unwrap(), position as i64).unwrap()
|
||||
vorbis_time_seek_ms(decoder.as_mut().unwrap(), position as i64).unwrap();
|
||||
self.update(|state| {
|
||||
state.position_ms = vorbis_time_tell_ms(decoder.as_mut().unwrap()).unwrap() as u32;
|
||||
state.position_measured_at = util::now_ms();
|
||||
|
|
Loading…
Reference in a new issue