diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/stduserinfo/src/userinfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/stduserinfo/src/userinfo.cpp b/src/core/stduserinfo/src/userinfo.cpp index f3c28024b0..d843147daf 100644 --- a/src/core/stduserinfo/src/userinfo.cpp +++ b/src/core/stduserinfo/src/userinfo.cpp @@ -138,7 +138,8 @@ class CUserInfoDlg : public CDlgBase hIcolib = (HANDLE)it->lParam;
else if (it->szProto)
hIcolib = Skin_GetProtoIcon(it->szProto, ID_STATUS_ONLINE);
- else if (hContact)
+
+ if (hContact && !it->szProto)
it->szProto = Proto_GetBaseAccountName(hContact);
if (hIcolib) {
|