Bramzor opened a new issue #174: URL ignored during contact save URL: https://github.com/apache/cordova-plugin-contacts/issues/174 Im trying to save a contact which works for most information but if I try to add an URL to the contact it just ignores the update without an error. For example: ``` contact.urls.push(new ContactField("SomeValue", "http://www.example.com")) console.log(contact) let result = await contact.save() console.log(result) ``` Print before save(): ` ... "urls":[{"type":"SomeValue","value":"http://www.example.com"}] ... ` After contact.save(): ` ... "urls":null ...` Any idea why my input is ignored?
---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
