diff options
author | Chandni Verma <chandniverma2112@gmail.com> | 2011-02-28 07:37:31 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2011-05-09 07:31:28 +0800 |
commit | 5324df2fe08ece901d34271afc56ac41e5100fbf (patch) | |
tree | 343bcc12c39664ba6b792b5eb2c3771fa556f98c /libempathy | |
parent | 9dbdbe692285c70d2b2bf713f2b21b156a87055c (diff) | |
download | gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.tar gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.tar.gz gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.tar.bz2 gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.tar.lz gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.tar.xz gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.tar.zst gsoc2013-empathy-5324df2fe08ece901d34271afc56ac41e5100fbf.zip |
Send full message for the default chat parted on part command
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-chat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index a56c08a32..87540f21a 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -1837,6 +1837,9 @@ empathy_tp_chat_leave (EmpathyTpChat *self, { EmpathyTpChatPriv *priv = GET_PRIV (self); + DEBUG ("Leaving channel %s with message \"%s\"", + tp_channel_get_identifier (priv->channel), message); + tp_channel_leave_async (priv->channel, TP_CHANNEL_GROUP_CHANGE_REASON_NONE, message, tp_channel_leave_async_cb, self); } |