Menu

suggest add: addFriend update

Help
2006-12-15
2013-04-29
  • flyingforce

    flyingforce - 2006-12-15

    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

     
    • Daniel Henninger

      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.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.