diff options
-rw-r--r-- | libempathy/empathy-utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index e2cd9c023..fedb14b98 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -397,6 +397,8 @@ empathy_protocol_icon_name (const gchar *protocol) else if (!tp_strdiff (protocol, "simple")) /* SIMPLE uses the same icon as SIP */ protocol = "sip"; + else if (!tp_strdiff (protocol, "sms")) + return g_strdup ("phone"); return g_strdup_printf ("im-%s", protocol); } |