diff options
author | George Hazan <ghazan@miranda.im> | 2018-11-08 22:22:32 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-11-08 22:22:32 +0300 |
commit | eb01d567f2e890fdc9d8a748eb1084ee2da34e2e (patch) | |
tree | b8f5e796f0400d527fae61f9d7066ba1a4601d69 /protocols/Discord | |
parent | a9ab2a063d49495f0ea0e0894d24cbd3c9fc7aa0 (diff) |
Discord: fix for another typo in logs :)
Diffstat (limited to 'protocols/Discord')
-rw-r--r-- | protocols/Discord/src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Discord/src/server.cpp b/protocols/Discord/src/server.cpp index 19e96cdb28..615d7f96e9 100644 --- a/protocols/Discord/src/server.cpp +++ b/protocols/Discord/src/server.cpp @@ -67,7 +67,7 @@ void CDiscordProto::OnReceiveHistory(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest if (!pUser->bIsPrivate) { si = g_chatApi.SM_FindSession(pUser->wszUsername, m_szModuleName); if (si == nullptr) { - debugLogA("nessage to unknown channel %lld ignored", pUser->channelId); + debugLogA("message to unknown channel %lld ignored", pUser->channelId); return; } } |