You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Omar Mefire (JIRA)" <ji...@apache.org> on 2015/12/22 07:12:46 UTC

[jira] [Comment Edited] (CB-10223) Camera.getPicture returns null in SuccessCallback if using video from iCloud

    [ https://issues.apache.org/jira/browse/CB-10223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15067601#comment-15067601 ] 

Omar Mefire edited comment on CB-10223 at 12/22/15 6:11 AM:
------------------------------------------------------------

I think it's impossible to return a FILE_URI in this case because the video is on a remote system (iCloud). 
Instead of throwing an exception, we just return null here, which seems appropriate.



was (Author: omefire):
I think it's impossible to return a FILE_URI in this case because the video is on a remote system. 
Instead of throwing an exception, we just return null here, which seems appropriate.


> Camera.getPicture returns null in SuccessCallback if using video from iCloud
> ----------------------------------------------------------------------------
>
>                 Key: CB-10223
>                 URL: https://issues.apache.org/jira/browse/CB-10223
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin Camera
>    Affects Versions: 5.2.0
>         Environment: iOS 9.1, iphone 5
>            Reporter: Mikle
>
> When client tries to upload video from his iCloud he gets null in SuccessCallback. It is really frustrating that user can see videos from iCloud but plugin can not get path of remote video. Probably if there is video that plugin can see but cant get file_uri of that video it would be great idea that user should not see this video at all. Here is my code example:
> function onSuccess(videoURI) {
>     alert('videoURI:' + videoURI)
> // here i get null 
>     if (device.platform === 'iOS'){
>        
>     }else{
>         /**
>          * Android branch
>          *
>          */
>  
>     }
> }
> navigator.camera.getPicture(onSuccess, deferred.reject, {
>     quality: 90,
>     destinationType: Camera.DestinationType.FILE_URI,
>     sourceType: Camera.PictureSourceType.SAVEDPHOTOALBUM,
>     mediaType: Camera.MediaType.VIDEO
> });
> Plugin version is 1.2.0



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org