getNext contact if contact is not null and is numberless

This commit is contained in:
Marco Castelluccio 2014-11-20 02:07:20 +01:00
Родитель daf72f9fae
Коммит 868897c802
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -349,7 +349,7 @@ NokiaContactsLocalMsgConnection.prototype.sendMessageToServer = function(message
}
var gotContact = (function(contact) {
if (!contact.tel) {
if (contact && !contact.tel) {
contacts.getNext(gotContact);
return;
}