changeset 6705:cebd49f42b56

[gaim-migrate @ 7231] Oops, MSN users can read their messages now. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 02 Sep 2003 05:12:45 +0000
parents 471eed8124d5
children 854a435d2cc3
files src/protocols/msn/msg.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/msn/msg.c	Tue Sep 02 05:03:36 2003 +0000
+++ b/src/protocols/msn/msg.c	Tue Sep 02 05:12:45 2003 +0000
@@ -168,10 +168,6 @@
 	/* Now we *should* be at the body. */
 	if (!strcmp(msn_message_get_content_type(msg), "application/x-msnmsgrp2p"))
 	{
-		msn_message_set_body(msg, tmp);
-	}
-	else
-	{
 		char header[48];
 		char footer[4];
 
@@ -209,6 +205,10 @@
 		/* Import the footer. */
 		msg->msnslp_footer.app_id = (long)footer;
 	}
+	else
+	{
+		msn_message_set_body(msg, tmp);
+	}
 
 	g_free(tmp_base);