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.light.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
|
}
|
@@ -8432,9 +8432,8 @@ class ContentSteeringController {
|
|
8432
8432
|
}
|
8433
8433
|
if (pathwayLevels.length !== levels.length) {
|
8434
8434
|
this.log(`Found ${pathwayLevels.length}/${levels.length} levels in Pathway "${this.pathwayId}"`);
|
8435
|
-
return pathwayLevels;
|
8436
8435
|
}
|
8437
|
-
return
|
8436
|
+
return pathwayLevels;
|
8438
8437
|
}
|
8439
8438
|
getLevelsForPathway(pathwayId) {
|
8440
8439
|
if (this.levels === null) {
|
@@ -19730,7 +19729,7 @@ class Hls {
|
|
19730
19729
|
* Get the video-dev/hls.js package version.
|
19731
19730
|
*/
|
19732
19731
|
static get version() {
|
19733
|
-
return "1.5.
|
19732
|
+
return "1.5.16";
|
19734
19733
|
}
|
19735
19734
|
|
19736
19735
|
/**
|