Merge pull request #7 from vagetman/master

A comma added before the URI for fn write_to
This commit is contained in:
rutgersc 2020-02-15 15:47:45 +01:00 committed by GitHub
commit e594ec5792
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,
}
}