diff --git a/dom/contacts/ContactManager.js b/dom/contacts/ContactManager.js index 4396f6214e8b..c30ce0ac3b0e 100644 --- a/dom/contacts/ContactManager.js +++ b/dom/contacts/ContactManager.js @@ -548,7 +548,7 @@ ContactManager.prototype = { if (DEBUG) debug("got SIM contacts: " + aType + " " + JSON.stringify(aContacts)); let result = aContacts.map(function(c) { var contact = new Contact(); - contact.init( { name: [c.alphaId], tel: [ { number: c.number } ] } ); + contact.init( { name: [c.alphaId], tel: [ { value: c.number } ] } ); return contact; }); if (DEBUG) debug("result: " + JSON.stringify(result));