@bigbinary/neeto-media-recorder 2.6.16 → 2.6.18

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/index.js CHANGED
@@ -638,7 +638,7 @@ var getDeviceInfo = /*#__PURE__*/function () {
638
638
  }();
639
639
  var isMp4Supported = function isMp4Supported() {
640
640
  var mimeType = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getSupportedMimeType();
641
- return mimeType === MIME_TYPE$1.mp4;
641
+ return mimeType.includes(MIME_TYPE$1.mp4);
642
642
  };
643
643
 
644
644
  function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }