From 780d9d5b783d95acba1f5ee3b018d13889a3ba78 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 19 Dec 2022 14:19:08 +0100 Subject: [PATCH] uriplaylistbin: example display when leaving because of eos Part-of: --- utils/uriplaylistbin/examples/playlist.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/uriplaylistbin/examples/playlist.rs b/utils/uriplaylistbin/examples/playlist.rs index 94116d16..3c624ba1 100644 --- a/utils/uriplaylistbin/examples/playlist.rs +++ b/utils/uriplaylistbin/examples/playlist.rs @@ -122,7 +122,10 @@ fn main() -> anyhow::Result<()> { eprintln!("Debugging information: {:?}", err.debug()); break; } - MessageView::Eos(..) => break, + MessageView::Eos(..) => { + println!("eos"); + break; + } _ => (), } }