diff options
-rw-r--r-- | src/empathy-status-icon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-status-icon.c b/src/empathy-status-icon.c index cca2557a8..9c2194880 100644 --- a/src/empathy-status-icon.c +++ b/src/empathy-status-icon.c @@ -201,7 +201,8 @@ status_icon_update_icon (EmpathyStatusIcon *icon) icon_name = empathy_icon_name_for_presence (state); } - gtk_status_icon_set_from_icon_name (priv->icon, icon_name); + if (icon_name != NULL) + gtk_status_icon_set_from_icon_name (priv->icon, icon_name); } static gboolean |