diff options
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 42ac4fa9e..0056ebe37 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -2004,12 +2004,17 @@ log_window_chats_set_selected (EmpathyLogWindow *window) TplEntity *this_target; const gchar *this_chat_id; gboolean this_is_chatroom; + gint this_type; gtk_tree_model_get (model, &iter, + COL_WHO_TYPE, &this_type, COL_WHO_ACCOUNT, &this_account, COL_WHO_TARGET, &this_target, -1); + if (this_type != COL_TYPE_NORMAL) + continue; + this_chat_id = tpl_entity_get_identifier (this_target); this_is_chatroom = tpl_entity_get_entity_type (this_target) == TPL_ENTITY_ROOM; |