# HG changeset patch # User Christian Hammond # Date 1052710005 0 # Node ID 91db34a45cbe05937ceef160321e2a069acea866 # Parent 2a1c92df702495f8a7dda530e0550636275baf20 [gaim-migrate @ 5734] The Open button is back on e-mail notifications. committer: Tailor Script diff -r 2a1c92df7024 -r 91db34a45cbe src/protocols/msn/notification.c --- a/src/protocols/msn/notification.c Sun May 11 21:47:29 2003 +0000 +++ b/src/protocols/msn/notification.c Mon May 12 03:26:45 2003 +0000 @@ -1046,6 +1046,11 @@ return TRUE; } + if (session->passport_info.file == NULL) { + msn_servconn_send_command(servconn, "URL", "INBOX"); + return TRUE; + } + table = msn_message_get_hashtable_from_body(msg); unread = g_hash_table_lookup(table, "Inbox-Unread"); @@ -1072,6 +1077,11 @@ return TRUE; } + if (session->passport_info.file == NULL) { + msn_servconn_send_command(servconn, "URL", "INBOX"); + return TRUE; + } + table = msn_message_get_hashtable_from_body(msg); from = g_hash_table_lookup(table, "From");