In the SimpleMessenger class,
addFriend(MsnList list, Email email, String friendlyName) Change from: MsnContact contact = getContactList().getContactByEmail(email); if (contact.isInList(list)){ return; }
To: MsnContact contact = getContactList().getContactByEmail(email); if ((contact!=null)&&(contact.isInList(list))){ return; }
It can help to erase one exception about contact was null
Thanks =) Just committed the fix to SVN. (also thanks if you are the person who reported it in the bug tracker =D )
Log in to post a comment.
In the SimpleMessenger class,
addFriend(MsnList list, Email email, String friendlyName)
Change from:
MsnContact contact = getContactList().getContactByEmail(email);
if (contact.isInList(list)){
return;
}
To:
MsnContact contact = getContactList().getContactByEmail(email);
if ((contact!=null)&&(contact.isInList(list))){
return;
}
It can help to erase one exception about contact was null
Thanks =) Just committed the fix to SVN. (also thanks if you are the person who reported it in the bug tracker =D )