Fix parseMediaLink stripping querystring from HLS manifest URLs

This commit is contained in:
Calvin Montgomery 2018-03-17 10:49:08 -07:00
parent 34eaca7b84
commit 304a6c9cfa
1 changed files with 1 additions and 1 deletions

View File

@ -1386,7 +1386,7 @@ function parseMediaLink(url) {
if ((m = url.match(/(.*\.m3u8)/))) {
return {
id: m[1],
id: url,
type: "hl"
};
}