mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2025-03-13 09:42:39 +00:00
Merge f66356ba7b
into 381ac7732f
This commit is contained in:
commit
853cd81dac
1 changed files with 4 additions and 0 deletions
|
@ -769,6 +769,10 @@ impl MediaPlaylist {
|
||||||
if let Some(ref start) = self.start {
|
if let Some(ref start) = self.start {
|
||||||
start.write_to(w)?;
|
start.write_to(w)?;
|
||||||
}
|
}
|
||||||
|
for unknown_tag in &self.unknown_tags {
|
||||||
|
writeln!(w, "{}", unknown_tag)?;
|
||||||
|
}
|
||||||
|
|
||||||
for segment in &self.segments {
|
for segment in &self.segments {
|
||||||
segment.write_to(w)?;
|
segment.write_to(w)?;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue