This commit is contained in:
Yannick Poirier 2024-02-16 09:51:28 +01:00 committed by GitHub
commit ba250f729c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -769,6 +769,9 @@ impl MediaPlaylist {
if let Some(ref start) = self.start {
start.write_to(w)?;
}
for unknown_tag in &self.unknown_tags {
writeln!(w, "{}", unknown_tag)?;
}
for segment in &self.segments {
segment.write_to(w)?;
}