diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-11 20:00:34 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-11 20:00:34 +0300 |
commit | ea22a022d6d370c0aa82b93c4b97e09ac11ae0d0 (patch) | |
tree | 61e5abe243be8896c4322d06b05db1aa7c4cef18 /protocols/Discord/src | |
parent | 7aa0ee2cde0fbe09140c8509d5c453e67cafce1a (diff) |
fix for an error message text
Diffstat (limited to 'protocols/Discord/src')
-rw-r--r-- | protocols/Discord/src/proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Discord/src/proto.cpp b/protocols/Discord/src/proto.cpp index 5821aa1055..e102d86fb1 100644 --- a/protocols/Discord/src/proto.cpp +++ b/protocols/Discord/src/proto.cpp @@ -340,7 +340,7 @@ int CDiscordProto::RecvMsg(MCONTACT hContact, PROTORECVEVENT *evt) void __cdecl CDiscordProto::SendMessageAckThread(void *param) { Sleep(100); - ProtoBroadcastAck((MCONTACT)param, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)1, (LPARAM)Translate("Protocol is offline or no JID")); + ProtoBroadcastAck((MCONTACT)param, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)1, (LPARAM)Translate("Protocol is offline or user isn't authorized yet")); } int CDiscordProto::SendMsg(MCONTACT hContact, int /*flags*/, const char *pszSrc) |