hls.js 1.5.5-0.canary.9986 → 1.5.5-0.canary.9989

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 CHANGED
@@ -644,7 +644,7 @@
644
644
  // Some browsers don't allow to use bind on console object anyway
645
645
  // fallback to default if needed
646
646
  try {
647
- newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.5-0.canary.9986");
647
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.5-0.canary.9989");
648
648
  } catch (e) {
649
649
  /* log fn threw an exception. All logger methods are no-ops. */
650
650
  return createLogger();
@@ -18303,7 +18303,7 @@
18303
18303
  _proto.onSubtitleTracksUpdated = function onSubtitleTracksUpdated(event, _ref) {
18304
18304
  var _this2 = this;
18305
18305
  var subtitleTracks = _ref.subtitleTracks;
18306
- if (!this.levels || subtitleOptionsIdentical(this.levels, subtitleTracks)) {
18306
+ if (this.levels && subtitleOptionsIdentical(this.levels, subtitleTracks)) {
18307
18307
  this.levels = subtitleTracks.map(function (mediaPlaylist) {
18308
18308
  return new Level(mediaPlaylist);
18309
18309
  });
@@ -30091,7 +30091,7 @@
30091
30091
  * Get the video-dev/hls.js package version.
30092
30092
  */
30093
30093
  function get() {
30094
- return "1.5.5-0.canary.9986";
30094
+ return "1.5.5-0.canary.9989";
30095
30095
  }
30096
30096
  }, {
30097
30097
  key: "Events",