You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2018/12/16 12:17:25 UTC

[GitHub] jcesarmobile closed pull request #198: CB-10857 android : Camera.getPicture return null for Google Drive (camera 2.1.1)

jcesarmobile closed pull request #198: CB-10857 android : Camera.getPicture return null for Google Drive (camera 2.1.1)
URL: https://github.com/apache/cordova-plugin-camera/pull/198
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/android/FileHelper.java b/src/android/FileHelper.java
index ccc5e3e7..7771362c 100644
--- a/src/android/FileHelper.java
+++ b/src/android/FileHelper.java
@@ -59,6 +59,10 @@ public static String getRealPath(Uri uri, CordovaInterface cordova) {
         else
             realPath = FileHelper.getRealPathFromURI_API11_And_Above(cordova.getActivity(), uri);
 
+        //Return the URI string if no other type of path has been found
+        if(realPath == null)
+            realPath =  uri.toString();
+
         return realPath;
     }
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


With regards,
Apache Git Services

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