aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-contact-menu.c')
-rw-r--r--libempathy-gtk/empathy-contact-menu.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c
index 7bcec3810..feb6da812 100644
--- a/libempathy-gtk/empathy-contact-menu.c
+++ b/libempathy-gtk/empathy-contact-menu.c
@@ -413,6 +413,7 @@ GtkWidget *
empathy_contact_log_menu_item_new (EmpathyContact *contact)
{
TplLogManager *manager;
+ TplEntity *entity;
gboolean have_log;
GtkWidget *item;
GtkWidget *image;
@@ -420,11 +421,15 @@ empathy_contact_log_menu_item_new (EmpathyContact *contact)
g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
manager = tpl_log_manager_dup_singleton ();
+ entity = tpl_entity_new_from_tp_contact (empathy_contact_get_tp_contact (contact),
+ TPL_ENTITY_CONTACT);
+
have_log = tpl_log_manager_exists (manager,
- empathy_contact_get_account (contact),
- empathy_contact_get_id (contact),
- FALSE);
+ empathy_contact_get_account (contact),
+ entity,
+ TPL_EVENT_MASK_TEXT);
+ g_object_unref (entity);
g_object_unref (manager);
item = gtk_image_menu_item_new_with_mnemonic (_("_Previous Conversations"));