You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Audrey So (JIRA)" <ji...@apache.org> on 2017/01/24 23:17:26 UTC

[jira] [Closed] (CB-12315) Contacts Plugin returns same URL for all photos in array

     [ https://issues.apache.org/jira/browse/CB-12315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Audrey So closed CB-12315.
--------------------------
    Resolution: Auto Closed

> 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
>            Reporter: Joshua Rowe
>
> 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.4#6332)

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