From 9910c7fd9634a2ce1cd074192a212e8d7e06978e Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 5 Mar 2026 20:27:43 +0100 Subject: fix bug on empty segment timeline --- stream/src/dash.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/stream/src/dash.rs b/stream/src/dash.rs index d2adf3f..6060501 100644 --- a/stream/src/dash.rs +++ b/stream/src/dash.rs @@ -209,6 +209,7 @@ impl Display for Timeline<'_> { } c += r; match (r, first) { + (0, _) => (), (1, true) => write!(f, r#""#)?, (1, false) => write!(f, r#""#)?, (_, true) => write!(f, r#""#)?, -- cgit v1.3