diff options
-rw-r--r-- | src/empathy-new-chatroom-dialog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/empathy-new-chatroom-dialog.c b/src/empathy-new-chatroom-dialog.c index 3ce59ab8f..cb8f2a1fb 100644 --- a/src/empathy-new-chatroom-dialog.c +++ b/src/empathy-new-chatroom-dialog.c @@ -416,6 +416,12 @@ new_chatroom_dialog_got_room_cb (TpRoomList *room_list, const gchar *invite_only; gchar *tmp; + if (tp_str_empty (tp_room_info_get_handle_name (room))) + { + DEBUG ("Room handle name is empty - Broken CM"); + return; + } + DEBUG ("New room listed: %s (%s)", tp_room_info_get_name (room), tp_room_info_get_handle_name (room)); |