]> git.0d.be Git - empathy.git/commitdiff
chat: add FIXME explaining how we should ideally request channels
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 6 Jul 2010 14:29:29 +0000 (16:29 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 7 Jul 2010 08:03:00 +0000 (10:03 +0200)
libempathy-gtk/empathy-chat.c

index 9c5fcc525f9d8f88633982656d2db58dbc8cb572..17a742ca00e2f15f34d61ff14d51d10d30867873 100644 (file)
@@ -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])) {