[
https://issues.apache.org/jira/browse/CB-12315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15851519#comment-15851519
]
Joshua Rowe commented on CB-12315:
----------------------------------
Following up, is there a solution to this? I went through the code yesterday
and found where the photo URI is being returned. Doesn't seem to be a way to
manipulate that. Also found that Android only allows one photo at this link:
https://developer.android.com/guide/topics/providers/contacts-provider.html
Do the docs for the plugin need to be updated to show that Android only allows
one photo or is there actually a way around this?
> Contacts Plugin returns same URL for all photos in array
> --------------------------------------------------------
>
> Key: CB-12315
> URL: https://issues.apache.org/jira/browse/CB-12315
> Project: Apache Cordova
> Issue Type: Bug
> Components: Plugin Contacts
> Affects Versions: 6.4.0
> Reporter: Joshua Rowe
> Labels: android6.0, triaged
> Fix For: 6.4.0
>
>
> Example: Contact ID 1000 has three photos which are returned in an array in
> the contacts object. However, all three photo URL's are the same for each of
> the photos returned.
> <code>
> var options = new ContactFindOptions();
> options.filter = "";
> options.multiple = true;
> options.hasPhoneNumber = true;
> var fields = ["id", "photos"];
> navigator.contacts.find(fields, ContactListSuccess, ContactListError,
> options);
> function ContactListSuccess(contacts) {
> for (var i = 0; i < contacts.length; i++) {
> console.log(contacts[i].id);
>
> for (var j = 0; j < contacts[i].photos.length; j++) {
> console.log(j + " - " + contacts[i].photos[j].value);
> }
> }
> }
> function ContactListError(error) {
> console.error(error);
> }
> </code>
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]