diff options
author | dartraiden <wowemuh@gmail.com> | 2024-06-01 20:31:52 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-06-01 20:31:52 +0300 |
commit | c632ddb4e109ddc3009507ae95890c342fb2ee6c (patch) | |
tree | 97d397b4c5ce2ccde873d158e44bfea981ac51f7 /protocols | |
parent | 275e4c7caae87280e2f48c8dd3e0debeabe240cb (diff) |
fixes #4445 (Discord: у контакта статус Away имеет некорректный значок)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Discord/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Discord/src/utils.cpp b/protocols/Discord/src/utils.cpp index 7ed5a734f1..e8480c80e2 100644 --- a/protocols/Discord/src/utils.cpp +++ b/protocols/Discord/src/utils.cpp @@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. int StrToStatus(const CMStringW &str)
{
if (str == L"idle")
- return ID_STATUS_NA;
+ return ID_STATUS_AWAY;
if (str == L"dnd")
return ID_STATUS_DND;
if (str == L"online")
|