A comma added before the URI for fn write_to

This commit is contained in:
vagetman 2020-02-11 12:43:06 -08:00 committed by GitHub
parent 9d81ce7194
commit 279fefef72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -210,7 +210,7 @@ impl VariantStream {
if self.is_i_frame {
write!(w, "#EXT-X-I-FRAME-STREAM-INF:")?;
self.write_stream_inf_common_attributes(w)?;
writeln!(w, "URI=\"{}\"", self.uri)
writeln!(w, ",URI=\"{}\"", self.uri)
}
else {
write!(w, "#EXT-X-STREAM-INF:")?;
@ -793,4 +793,4 @@ impl Start {
pub struct ExtTag {
pub tag: String,
pub rest: String,
}
}