# HG changeset patch # User Elliott Sales de Andrade # Date 1217209871 0 # Node ID 8218a2c209f1203339361df8c766eb3073604746 # Parent 46da06b6b4ce5fb9dc1caa97b285cead22124b99 On MSN, use "external" and "mobile" for Web messenger and mobile devices, as Hylke suggested. I'm not sure why I had it set to "hiptop" before. Fixes #3385. diff -r 46da06b6b4ce -r 8218a2c209f1 libpurple/protocols/msn/msn.c --- a/libpurple/protocols/msn/msn.c Thu Jul 24 04:15:13 2008 +0000 +++ b/libpurple/protocols/msn/msn.c Mon Jul 28 01:51:11 2008 +0000 @@ -621,14 +621,14 @@ if (user->clientid & MSN_CLIENT_CAP_BOT) return "bot"; if (user->clientid & MSN_CLIENT_CAP_WIN_MOBILE) - return "hiptop"; /* XXX: Rename to Mobile / Use different icon? */ + return "mobile"; #if 0 /* XXX: Since we don't support this, there's no point in showing it just yet */ if (user->clientid & MSN_CLIENT_CAP_SCHANNEL) return "secure"; #endif if (user->clientid & MSN_CLIENT_CAP_WEBMSGR) - return "web"; + return "external"; if (user->networkid == MSN_NETWORK_YAHOO) return "yahoo"; }