aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libempathy/empathy-utils.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index b748726c5..e2cd9c023 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -392,8 +392,11 @@ gchar *
empathy_protocol_icon_name (const gchar *protocol)
{
if (!tp_strdiff (protocol, "yahoojp"))
- /* Yahoo Japan use the same icon as Yahoo */
+ /* Yahoo Japan uses the same icon as Yahoo */
protocol = "yahoo";
+ else if (!tp_strdiff (protocol, "simple"))
+ /* SIMPLE uses the same icon as SIP */
+ protocol = "sip";
return g_strdup_printf ("im-%s", protocol);
}