src/server.c

changeset 6640
007eb21016b4
parent 6624
3cb885166e39
child 6695
2a63688f0d6d
--- a/src/server.c	Wed Aug 27 23:03:03 2003 +0000
+++ b/src/server.c	Thu Aug 28 01:18:50 2003 +0000
@@ -267,7 +267,7 @@
 	if (gc != NULL && gc->prpl != NULL)
 		prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
 
-	c = gaim_find_conversation(name);
+	c = gaim_find_conversation_with_account(name, gc->account);
 
 	if (prpl_info && prpl_info->send_im)
 		val = prpl_info->send_im(gc, name, message, len, imflags);
@@ -1037,7 +1037,7 @@
 		 */
 		if (docklet_count &&
 		    gaim_prefs_get_bool("/plugins/gtk/docklet/queue_messages") &&
-		    !gaim_find_conversation(name)) {
+		    !gaim_find_conversation_with_account(name, gc->account)) {
 			/*
 			 * We're gonna queue it up and wait for the user to ask for
 			 * it... probably by clicking the docklet or windows tray icon.
@@ -1234,7 +1234,7 @@
 					 GaimTypingState state) {
 
 	struct buddy *b;
-	GaimConversation *cnv = gaim_find_conversation(name);
+	GaimConversation *cnv = gaim_find_conversation_with_account(name, gc->account);
 	GaimIm *im;
 
 	if (!cnv)
@@ -1263,7 +1263,7 @@
 
 void serv_got_typing_stopped(GaimConnection *gc, const char *name) {
 
-	GaimConversation *c = gaim_find_conversation(name);
+	GaimConversation *c = gaim_find_conversation_with_account(name, gc->account);
 	GaimIm *im;
 	struct buddy *b;
 

mercurial