mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2024-12-31 18:28:40 +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:")?;
|
||||||
|
@ -793,4 +793,4 @@ impl Start {
|
||||||
pub struct ExtTag {
|
pub struct ExtTag {
|
||||||
pub tag: String,
|
pub tag: String,
|
||||||
pub rest: String,
|
pub rest: String,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue