changeset 7444:66945d35a7c0

[gaim-migrate @ 8049] fix jabber chat issues committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 06 Nov 2003 05:44:28 +0000
parents df50bd14e161
children 6ea4a49b4b51
files ChangeLog src/protocols/jabber/message.c
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Nov 06 02:46:07 2003 +0000
+++ b/ChangeLog	Thu Nov 06 05:44:28 2003 +0000
@@ -5,6 +5,7 @@
 		* fixes i18n issues with logs
 		* compatable with old logs
 		* hopefully fixes segfault in viewing logs
+	* Fix several Jabber bugs
 	* German translation updated (Bjoern Voigt)
 
 version 0.72 (10/31/2003):
--- a/src/protocols/jabber/message.c	Thu Nov 06 02:46:07 2003 +0000
+++ b/src/protocols/jabber/message.c	Thu Nov 06 05:44:28 2003 +0000
@@ -474,7 +474,7 @@
 
 	jm = g_new0(JabberMessage, 1);
 	jm->js = gc->proto_data;
-	jm->type = JABBER_MESSAGE_CHAT;
+	jm->type = JABBER_MESSAGE_GROUPCHAT;
 	jm->to = g_strdup_printf("%s@%s", chat->room, chat->server);
 
 	buf = g_strdup_printf("<html xmlns='http://jabber.org/protocol/xhtml-im'><body>%s</body></html>", msg);