changeset 30993:e787b5d9ee7d

Allow using the Send To menu in the case that the active conversation's account disconnects. Previously, the Send To menu was unusable in this case, making it impossible to simply switch accounts and continue the conversation. Fixes #12471. committer: John Bailey <rekkanoryo@rekkanoryo.org>
author pidgin@keithmoyer.com
date Sat, 18 Sep 2010 17:50:29 +0000
parents 55fb3dfd086b
children d4e267c04d57
files pidgin/gtkconv.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkconv.c	Sat Sep 18 17:34:35 2010 +0000
+++ b/pidgin/gtkconv.c	Sat Sep 18 17:50:29 2010 +0000
@@ -3903,7 +3903,7 @@
 						continue;
 
 					account = purple_buddy_get_account(buddy);
-					if (purple_account_is_connected(account))
+					if (purple_account_is_connected(account) || account == gtkconv->active_conv->account)
 					{
 						/* Use the PurplePresence to get unique buddies. */
 						PurplePresence *presence = purple_buddy_get_presence(buddy);