Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 404547a

Browse files
Merge pull request #94 from guillaume-roy/master
Fix getDownloadUrl on Android to return string
2 parents e7a8746 + 14074f1 commit 404547a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase.android.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ firebase.getDownloadUrl = function (arg) {
10311031

10321032
var onSuccessListener = new com.google.android.gms.tasks.OnSuccessListener({
10331033
onSuccess: function(uri) {
1034-
resolve(uri);
1034+
resolve(uri.toString());
10351035
}
10361036
});
10371037

0 commit comments

Comments
 (0)