hls.js 1.5.15 → 1.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hls.js +3 -4
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +3 -4
- package/dist/hls.light.js.map +1 -1
- package/dist/hls.light.min.js +1 -1
- package/dist/hls.light.min.js.map +1 -1
- package/dist/hls.light.mjs +3 -4
- package/dist/hls.light.mjs.map +1 -1
- package/dist/hls.min.js +1 -1
- package/dist/hls.min.js.map +1 -1
- package/dist/hls.mjs +3 -4
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/package.json +1 -1
- package/src/controller/content-steering-controller.ts +1 -2
package/dist/hls.mjs
CHANGED
@@ -411,7 +411,7 @@ function enableLogs(debugConfig, id) {
|
|
411
411
|
// Some browsers don't allow to use bind on console object anyway
|
412
412
|
// fallback to default if needed
|
413
413
|
try {
|
414
|
-
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.5.
|
414
|
+
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.5.16"}`);
|
415
415
|
} catch (e) {
|
416
416
|
exportedLogger = fakeLogger;
|
417
417
|
}
|
@@ -24279,9 +24279,8 @@ class ContentSteeringController {
|
|
24279
24279
|
}
|
24280
24280
|
if (pathwayLevels.length !== levels.length) {
|
24281
24281
|
this.log(`Found ${pathwayLevels.length}/${levels.length} levels in Pathway "${this.pathwayId}"`);
|
24282
|
-
return pathwayLevels;
|
24283
24282
|
}
|
24284
|
-
return
|
24283
|
+
return pathwayLevels;
|
24285
24284
|
}
|
24286
24285
|
getLevelsForPathway(pathwayId) {
|
24287
24286
|
if (this.levels === null) {
|
@@ -27782,7 +27781,7 @@ class Hls {
|
|
27782
27781
|
* Get the video-dev/hls.js package version.
|
27783
27782
|
*/
|
27784
27783
|
static get version() {
|
27785
|
-
return "1.5.
|
27784
|
+
return "1.5.16";
|
27786
27785
|
}
|
27787
27786
|
|
27788
27787
|
/**
|