]> git.0d.be Git - empathy.git/commitdiff
contact: fix typo when creating new contact from logger entity
authorJonny Lamb <jonnylamb@gnome.org>
Wed, 11 May 2011 09:39:36 +0000 (10:39 +0100)
committerJonny Lamb <jonnylamb@gnome.org>
Wed, 11 May 2011 09:39:36 +0000 (10:39 +0100)
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
libempathy/empathy-contact.c

index 620c479e2724a05a65ab304b824a40c80a52f2f6..f3e200e270712713744c34b81b73bf31fb7068f4 100644 (file)
@@ -653,8 +653,8 @@ empathy_contact_from_tpl_contact (TpAccount *account,
   is_user = (TPL_ENTITY_SELF == tpl_entity_get_entity_type (tpl_entity));
 
   retval = g_object_new (EMPATHY_TYPE_CONTACT,
-      "id", tpl_entity_get_alias (tpl_entity),
-      "alias", tpl_entity_get_identifier (tpl_entity),
+      "id", tpl_entity_get_identifier (tpl_entity),
+      "alias", tpl_entity_get_alias (tpl_entity),
       "account", account,
       "is-user", is_user,
       NULL);