mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2024-12-22 22:46:37 +00:00
A comma added before the URI for fn write_to
This commit is contained in:
parent
9d81ce7194
commit
279fefef72
1 changed files with 2 additions and 2 deletions
|
@ -210,7 +210,7 @@ impl VariantStream {
|
||||||
if self.is_i_frame {
|
if self.is_i_frame {
|
||||||
write!(w, "#EXT-X-I-FRAME-STREAM-INF:")?;
|
write!(w, "#EXT-X-I-FRAME-STREAM-INF:")?;
|
||||||
self.write_stream_inf_common_attributes(w)?;
|
self.write_stream_inf_common_attributes(w)?;
|
||||||
writeln!(w, "URI=\"{}\"", self.uri)
|
writeln!(w, ",URI=\"{}\"", self.uri)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
write!(w, "#EXT-X-STREAM-INF:")?;
|
write!(w, "#EXT-X-STREAM-INF:")?;
|
||||||
|
|
Loading…
Reference in a new issue