diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-07 14:36:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-07 14:36:09 +0000 |
commit | 1d28f884c5750602ab5479c6ee978ba9e14adf9d (patch) | |
tree | c89dc8d7759891cbc104b90044ab511cb4a1e877 /protocols/MRA/src/Mra_proto.cpp | |
parent | f25d585f07dafbcfa99e0c33dc9bbe0d72230074 (diff) |
ICQ client detection for MRA
git-svn-id: http://svn.miranda-ng.org/main/trunk@12657 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA/src/Mra_proto.cpp')
-rw-r--r-- | protocols/MRA/src/Mra_proto.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/MRA/src/Mra_proto.cpp b/protocols/MRA/src/Mra_proto.cpp index 596fe4d1b9..7951ea777c 100644 --- a/protocols/MRA/src/Mra_proto.cpp +++ b/protocols/MRA/src/Mra_proto.cpp @@ -679,13 +679,13 @@ bool CMraProto::CmdUserStatus(BinBuffer &buf) delSetting(hContact, DBSETTING_XSTATUSMSG);
}
-
if (dwTemp != ID_STATUS_OFFLINE) { // пишем клиента только если юзер не отключён, иначе не затираем старое
if (!szUserAgentFormatted.IsEmpty()) {
if (getByte("MirVerRaw", MRA_DEFAULT_MIRVER_RAW) == FALSE)
szUserAgentFormatted = MraGetVersionStringFromFormatted(szUserAgentFormatted);
}
- else szUserAgentFormatted = MIRVER_UNKNOWN;
+ else szUserAgentFormatted = (szEmail.Find("@uin.icq") == -1) ? MIRVER_UNKNOWN : "ICQ client";
+
mraSetStringA(hContact, "MirVer", szUserAgentFormatted);
}
|