epetre commented on issue #826:
URL: 
https://github.com/apache/cordova-plugin-camera/issues/826#issuecomment-1585646840

   Getting the same issue with the README.md example 
   
   ```
   navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
       destinationType: Camera.DestinationType.FILE_URI });
   
   function onSuccess(imageURI) {
       var image = document.getElementById('myImage');
       image.src = imageURI;
   }
   
   function onFail(message) {
       alert('Failed because: ' + message);
   }
   ```
   
   I think code 20 must is probably related to permissions. 
   It's probably going to be covered by 
   
   https://github.com/apache/cordova-plugin-camera/pull/814


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to