You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/10/22 10:47:18 UTC

[GitHub] [cordova-plugin-media-capture] nicolas-gameffecive commented on issue #187: iOS 13 can't access recorded video using cordova-plugin-file

nicolas-gameffecive commented 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:
users@infra.apache.org



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