1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-18 16:28:20 +00:00

Merge pull request #41 from unipro/master

fix rfc8216_8-7.m3u8 parsing bug
This commit is contained in:
Lucas 2020-01-23 19:29:47 +01:00 committed by GitHub
commit ae43982d0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,12 +127,11 @@ impl ExtXMediaBuilder {
return Err(Error::unexpected_attribute("INSTREAM-ID").to_string());
}
if self.is_default.unwrap_or(false) && !self.is_autoselect.unwrap_or(false) {
return Err(Error::custom(format!(
"If `DEFAULT` is true, `AUTOSELECT` has to be true too, Default: {:?}, Autoselect: {:?}!",
self.is_default, self.is_autoselect
))
.to_string());
if self.is_default.unwrap_or(false) && !self.is_autoselect.unwrap_or(true) {
return Err(
Error::custom("If `DEFAULT` is true and `AUTOSELECT` is present, \
`AUTOSELECT` has to be true too!").to_string(),
);
}
if media_type != MediaType::Subtitles && self.is_forced.is_some() {