diff libpurple/protocols/jabber/presence.c @ 23103:591ef3693345

As discussed on the devel list, purple_serv_got_join_chat_failed() and the "chat-join-failed" signal now accept and pass (respectively) a GHashTable instead of a string. The GHashTable is the same one which was passed to serv_join_chat() originally.
author Evan Schoenberg <evan.s@dreskin.net>
date Wed, 30 Apr 2008 06:29:16 +0000
parents 424037c8a343
children 5793bcea224c ff29208e03ef
line wrap: on
line diff
--- a/libpurple/protocols/jabber/presence.c	Wed Apr 30 05:56:53 2008 +0000
+++ b/libpurple/protocols/jabber/presence.c	Wed Apr 30 06:29:16 2008 +0000
@@ -587,7 +587,7 @@
 					serv_got_chat_left(js->gc, chat->id);
 			} else {
 				title = g_strdup_printf(_("Error joining chat %s"), from);
-				purple_serv_got_join_chat_failed(js->gc, room_jid);
+				purple_serv_got_join_chat_failed(js->gc, chat->components);
 			}
 			purple_notify_error(js->gc, title, title, msg);
 			g_free(title);