nicolas-gameffecive edited a comment on issue #187:
URL: 
https://github.com/apache/cordova-plugin-media-capture/issues/187#issuecomment-714407597


   in IOS this is what fixed the issue for me :
   remove the '/private' and add file://
   
   
       fixIosFilePath(path: string) {
           if (path.indexOf('/private/') === 0) {
               path = 'file://' + path.substr(8);
           }
   
           return path;
       }


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to