hls.js 1.5.9-0.canary.10223 → 1.5.9-0.canary.10225

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.light.js CHANGED
@@ -606,7 +606,7 @@
606
606
  // Some browsers don't allow to use bind on console object anyway
607
607
  // fallback to default if needed
608
608
  try {
609
- newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.9-0.canary.10223");
609
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.9-0.canary.10225");
610
610
  } catch (e) {
611
611
  /* log fn threw an exception. All logger methods are no-ops. */
612
612
  return createLogger();
@@ -2639,7 +2639,7 @@
2639
2639
 
2640
2640
  var LEVEL_PLAYLIST_REGEX_FAST = new RegExp([/#EXTINF:\s*(\d*(?:\.\d+)?)(?:,(.*)\s+)?/.source,
2641
2641
  // duration (#EXTINF:<duration>,<title>), group 1 => duration, group 2 => title
2642
- /(?!#) *(\S[\S ]*)/.source,
2642
+ /(?!#) *(\S[^\r\n]*)/.source,
2643
2643
  // segment URI, group 3 => the URI (note newline is not eaten)
2644
2644
  /#EXT-X-BYTERANGE:*(.+)/.source,
2645
2645
  // next segment's byterange, group 4 => range spec (x@y)
@@ -21715,7 +21715,7 @@
21715
21715
  * Get the video-dev/hls.js package version.
21716
21716
  */
21717
21717
  function get() {
21718
- return "1.5.9-0.canary.10223";
21718
+ return "1.5.9-0.canary.10225";
21719
21719
  }
21720
21720
  }, {
21721
21721
  key: "Events",