@mottosports/motto-video-player 1.0.1-rc.37 → 1.0.1-rc.38

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/index.mjs CHANGED
@@ -1130,7 +1130,8 @@ var isPlayReadySupported = () => {
1130
1130
  const isXbox = /Xbox/.test(userAgent);
1131
1131
  const isEdge = /Edg/.test(userAgent);
1132
1132
  const isIE = /Trident|MSIE/.test(userAgent);
1133
- return isXbox || isEdge || isIE;
1133
+ const isWindows = /Windows/.test(userAgent);
1134
+ return isXbox || (isEdge || isIE) && isWindows;
1134
1135
  };
1135
1136
  var isChrome64PlusOnMacOrWindows = () => {
1136
1137
  if (typeof navigator === "undefined") {
@@ -1157,7 +1158,7 @@ var isChrome64PlusOnMacOrWindows = () => {
1157
1158
  import initShakaPlayerMux from "@mux/mux-data-shakaplayer";
1158
1159
 
1159
1160
  // package.json
1160
- var version = "1.0.1-rc.37";
1161
+ var version = "1.0.1-rc.38";
1161
1162
 
1162
1163
  // src/utils/licenseCache.ts
1163
1164
  var PERSISTENT_LICENSE_PREFIX = "motto_lic_";