diff options
Diffstat (limited to 'libempathy/empathy-contact.c')
-rw-r--r-- | libempathy/empathy-contact.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 893fabb5a..ec91f3a00 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -423,7 +423,7 @@ empathy_contact_set_name (EmpathyContact *contact, g_free (priv->name); priv->name = g_strdup (name); contact_set_ready_flag (contact, EMPATHY_CONTACT_READY_NAME, - !G_STR_EMPTY (name)); + name != NULL); g_object_notify (G_OBJECT (contact), "name"); } |