From 8e6cc2add809cc6c99866dda04d04c23de3e83e2 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 27 Jan 2017 20:00:33 +0300 Subject: fix for a wrong status translation --- protocols/Discord/src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/Discord/src/utils.cpp b/protocols/Discord/src/utils.cpp index 38b4af4bdd..6813313bc0 100644 --- a/protocols/Discord/src/utils.cpp +++ b/protocols/Discord/src/utils.cpp @@ -27,7 +27,7 @@ void CDiscordProto::SetAllContactStatuses(int status) int StrToStatus(const CMStringW &str) { if (str == L"idle") - return ID_STATUS_IDLE; + return ID_STATUS_NA; if (str == L"online") return ID_STATUS_ONLINE; if (str == L"offline") -- cgit v1.2.3