@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.js CHANGED
@@ -1171,7 +1171,8 @@ var isPlayReadySupported = () => {
1171
1171
  const isXbox = /Xbox/.test(userAgent);
1172
1172
  const isEdge = /Edg/.test(userAgent);
1173
1173
  const isIE = /Trident|MSIE/.test(userAgent);
1174
- return isXbox || isEdge || isIE;
1174
+ const isWindows = /Windows/.test(userAgent);
1175
+ return isXbox || (isEdge || isIE) && isWindows;
1175
1176
  };
1176
1177
  var isChrome64PlusOnMacOrWindows = () => {
1177
1178
  if (typeof navigator === "undefined") {
@@ -1198,7 +1199,7 @@ var isChrome64PlusOnMacOrWindows = () => {
1198
1199
  var import_mux_data_shakaplayer = __toESM(require("@mux/mux-data-shakaplayer"));
1199
1200
 
1200
1201
  // package.json
1201
- var version = "1.0.1-rc.37";
1202
+ var version = "1.0.1-rc.38";
1202
1203
 
1203
1204
  // src/utils/licenseCache.ts
1204
1205
  var PERSISTENT_LICENSE_PREFIX = "motto_lic_";