aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-06 22:29:29 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-07 16:03:00 +0800
commitac6f56a439647386c15fdd6045c00b914f4975f9 (patch)
treee8161796acd8e03af204f3df6f26248b246885ec /libempathy-gtk/empathy-chat.c
parent26110eb9baef0ef58e8daebff9c3373485da3e50 (diff)
downloadgsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.tar
gsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.tar.gz
gsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.tar.bz2
gsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.tar.lz
gsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.tar.xz
gsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.tar.zst
gsoc2013-empathy-ac6f56a439647386c15fdd6045c00b914f4975f9.zip
chat: add FIXME explaining how we should ideally request channels
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-rw-r--r--libempathy-gtk/empathy-chat.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c
index 9c5fcc525..17a742ca0 100644
--- a/libempathy-gtk/empathy-chat.c
+++ b/libempathy-gtk/empathy-chat.c
@@ -242,6 +242,9 @@ reconnected_connection_ready_cb (TpConnection *connection,
DEBUG ("Account reconnected, request a new Text channel");
+ /* FIXME: Ideally we should ask to handle ourself the channel so we can
+ * report the error if any but this is blocked by
+ * https://bugs.freedesktop.org/show_bug.cgi?id=13422 */
switch (priv->handle_type) {
case TP_HANDLE_TYPE_CONTACT:
empathy_dispatcher_chat_with_contact_id (
@@ -702,6 +705,9 @@ chat_command_join (EmpathyChat *chat,
GStrv rooms = g_strsplit_set (strv[1], ", ", -1);
+ /* FIXME: Ideally we should ask to handle ourself the channel so we can
+ * report the error if any but this is blocked by
+ * https://bugs.freedesktop.org/show_bug.cgi?id=13422 */
while (rooms[i] != NULL) {
/* ignore empty strings */
if (!EMP_STR_EMPTY (rooms[i])) {