You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Filip Maj (JIRA)" <ji...@apache.org> on 2013/02/22 20:00:13 UTC

[jira] [Updated] (CB-837) CaptureCB - mediaFile.fullPath does not resolve to file

     [ https://issues.apache.org/jira/browse/CB-837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Filip Maj updated CB-837:
-------------------------

    Labels: audit  (was: )

Added this to our API Audit article: http://wiki.apache.org/cordova/Core%20API%20Audit
                
> CaptureCB - mediaFile.fullPath does not resolve to file
> -------------------------------------------------------
>
>                 Key: CB-837
>                 URL: https://issues.apache.org/jira/browse/CB-837
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: CordovaJS
>    Affects Versions: 1.7.0
>         Environment: Tested on iOS
>            Reporter: Dimitri Adamou
>            Assignee: Filip Maj
>            Priority: Minor
>              Labels: audit
>
> Hey there,
> Simply put here is an example
> navigator.device.capture.captureAudio(successCB, error, {limit: 1});
> function successCB(mediaFile) {
>    
>    window.resolveLocalFileSystemURI(mediaFile[0].fullPath, gotFileEntry, fsFail);
> }
> function fsFail(error) {
>    alert('we failed with code ' + error.code); //5
> }
> The issue is mediaFile[0].fullPath lacks file://localhost being prepended. Is this intentional?
> Simple work around is just to add it in using
> var path = mediaFile[0].fullPath
> if(path.indexOf("file://localhost") == -1) path = "file://localhost" + path;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira