зеркало из https://github.com/mozilla/gecko-dev.git
Bug 785147 - Contacts API: fix import contacts from SIM card. r=fabrice
This commit is contained in:
Родитель
6e5d279c63
Коммит
51502e4c12
|
@ -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));
|
||||
|
|
Загрузка…
Ссылка в новой задаче