Merge branch 'master' into fix_hang_seek_on_empty_queue

This commit is contained in:
dvdsk 2024-05-23 13:10:49 +02:00
commit 66cbef992b
No known key found for this signature in database
GPG key ID: 6CF9D20C5709A836

View file

@ -15,4 +15,8 @@ fn main() {
sink.try_seek(Duration::from_secs(4)).unwrap();
sink.sleep_until_end();
// wont do anything since the sound has ended already
sink.try_seek(Duration::from_secs(5)).unwrap();
println!("seek example ended");
}