# HG changeset patch # User Sean Egan # Date 1193338299 0 # Node ID d55617a15301156068f4c776dbe6f89411b081e9 # Parent f43d7aafe1f81ba7035591f5618de1f24081890e don't assume means the conversation window is closed. Fixes #3690 diff -r f43d7aafe1f8 -r d55617a15301 libpurple/protocols/bonjour/jabber.c --- a/libpurple/protocols/bonjour/jabber.c Wed Oct 24 03:29:33 2007 +0000 +++ b/libpurple/protocols/bonjour/jabber.c Thu Oct 25 18:51:39 2007 +0000 @@ -375,12 +375,14 @@ /* Inform the user that the conversation has been closed */ if (bb->conversation != NULL) { +#if 0 conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM, pb->name, pb->account); if (conv != NULL) { char *tmp = g_strdup_printf(_("%s has closed the conversation."), pb->name); purple_conversation_write(conv, NULL, tmp, PURPLE_MESSAGE_SYSTEM, time(NULL)); g_free(tmp); } +#endif /* Close the socket, clear the watcher and free memory */ bonjour_jabber_close_conversation(bb->conversation); bb->conversation = NULL;