diff options
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")
|