aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-chat-manager.c
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-05-05 14:22:23 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-05-05 14:31:51 +0800
commit0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306 (patch)
treec742771832d409e1acf3c37236c0d2a84dcada8c /src/empathy-chat-manager.c
parent11e8ca993282f16043b821f00e55f5ebd03fb089 (diff)
downloadgsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.tar
gsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.tar.gz
gsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.tar.bz2
gsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.tar.lz
gsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.tar.xz
gsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.tar.zst
gsoc2013-empathy-0fda59487b536e49bfcec7ab1ee6e9c6d7b6f306.zip
Include SMSChannel property in empathy_chat_window_find_chat()
The approach in https://bugzilla.gnome.org/show_bug.cgi?id=644085 was wrong because channel paths can change across reconnects. This would cause new chat windows to be created when they were rerequested. A more future-proof solution would be to keep a white/black list of comparable properties, but I think this is overengineering the problem for the time being. Instead we'll just include the SMSChannel property in the comparison.
Diffstat (limited to 'src/empathy-chat-manager.c')
-rw-r--r--src/empathy-chat-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-chat-manager.c b/src/empathy-chat-manager.c
index 6c92c25cb..544ede69f 100644
--- a/src/empathy-chat-manager.c
+++ b/src/empathy-chat-manager.c
@@ -111,7 +111,8 @@ process_tp_chat (EmpathyChatManager *self,
id = empathy_tp_chat_get_id (tp_chat);
if (!tp_str_empty (id))
{
- chat = empathy_chat_window_find_chat (account, id);
+ chat = empathy_chat_window_find_chat (account, id,
+ empathy_tp_chat_is_sms_channel (tp_chat));
}
if (chat != NULL)