summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-01-27 20:00:33 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-01-27 20:00:33 +0300
commit8e6cc2add809cc6c99866dda04d04c23de3e83e2 (patch)
tree9dfe4dcf17aca723b36ad4a53a4c970d27592407
parent92f3792e0d61b20afcbeb929c61f7028ab0d18a5 (diff)
fix for a wrong status translation
-rw-r--r--protocols/Discord/src/utils.cpp2
1 files changed, 1 insertions, 1 deletions
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")