From 8cecad34d498246f479261b62ee91b45bb17adde Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Mon, 13 Feb 2017 12:32:56 +0100 Subject: [PATCH] MOBILE-1982 upload: Allow getting videos in upload album --- www/core/components/fileuploader/services/helper.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/core/components/fileuploader/services/helper.js b/www/core/components/fileuploader/services/helper.js index c5471315d6b..39dd2fc10fa 100644 --- a/www/core/components/fileuploader/services/helper.js +++ b/www/core/components/fileuploader/services/helper.js @@ -404,6 +404,10 @@ angular.module('mm.core.fileuploader') options.sourceType = navigator.camera.PictureSourceType.PHOTOLIBRARY; options.popoverOptions = new CameraPopoverOptions(10, 10, $window.innerWidth - 200, $window.innerHeight - 200, Camera.PopoverArrowDirection.ARROW_ANY); + if (ionic.Platform.isIOS()) { + // Only get all media in iOS because in Android using this option allows uploading any kind of file. + options.mediaType = Camera.MediaType.ALLMEDIA; + } } return $cordovaCamera.getPicture(options).then(function(path) {