diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-05-28 05:48:33 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-05-28 05:50:39 +0800 |
commit | 6265c301144866873f49851d850ba66fcde3bd8c (patch) | |
tree | ac357aff5471d478edca7ebbc8f74ac75b20ffbc /libempathy/empathy-tp-chat.c | |
parent | bef9e289a01555b4a557988eac0b52ce4d1b1b22 (diff) | |
download | gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.tar gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.tar.gz gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.tar.bz2 gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.tar.lz gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.tar.xz gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.tar.zst gsoc2013-empathy-6265c301144866873f49851d850ba66fcde3bd8c.zip |
Correctly set the is_member flag when members are added
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r-- | libempathy/empathy-tp-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index e818c779d..794e3e3b7 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -867,7 +867,7 @@ tp_chat_got_added_contacts_cb (EmpathyTpContactFactory *factory, priv->members = g_list_prepend (priv->members, g_object_ref (contact)); g_signal_emit_by_name (chat, "members-changed", - contact, NULL, 0, NULL, FALSE); + contact, NULL, 0, NULL, TRUE); } } |