comparison libpurple/protocols/msn/contact.c @ 23529:4162ac08c775

On MSN, always send the privacy settings and contact list after parsing the address book. This doesn't seem to cause any problems and hopefully fixes #6196.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 13 Jul 2008 04:48:05 +0000
parents a0e957b7b923
children 860e5e210fc9
comparison
equal deleted inserted replaced
23528:06e6043ee51c 23529:4162ac08c775
774 g_return_if_fail(session != NULL); 774 g_return_if_fail(session != NULL);
775 775
776 purple_debug_misc("msn", "Got the Address Book!\n"); 776 purple_debug_misc("msn", "Got the Address Book!\n");
777 777
778 if (msn_parse_addressbook(session, resp->xml)) { 778 if (msn_parse_addressbook(session, resp->xml)) {
779 if (!session->logged_in) { 779 msn_send_privacy(session->account->gc);
780 msn_send_privacy(session->account->gc); 780 msn_notification_dump_contact(session);
781 msn_notification_dump_contact(session);
782 }
783 } else { 781 } else {
784 /* This is making us loop infinitely when we fail to parse the 782 /* This is making us loop infinitely when we fail to parse the
785 address book, disable for now (we should re-enable when we 783 address book, disable for now (we should re-enable when we
786 send timestamps) 784 send timestamps)
787 */ 785 */