aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-03-16 20:48:24 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-03-16 20:48:24 +0800
commit302b631948b98ba90a43d59437751a6e9906779f (patch)
tree092259bde8af199dacd51f9301208ac57d4fdc05 /libempathy/empathy-contact.c
parent70b7f83a93603909fd478a3b6c7d16c81aee3703 (diff)
downloadgsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.tar
gsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.tar.gz
gsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.tar.bz2
gsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.tar.lz
gsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.tar.xz
gsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.tar.zst
gsoc2013-empathy-302b631948b98ba90a43d59437751a6e9906779f.zip
Retry requesting aliases if it fails, it can happen if there is too many aliases to request and it takes too much time
svn path=/trunk/; revision=798
Diffstat (limited to 'libempathy/empathy-contact.c')
-rw-r--r--libempathy/empathy-contact.c2
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");
}