diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-28 21:28:42 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-28 21:28:42 +0300 |
commit | 602868cc63cc1fd77a5d6e6a685a06f2ee8a3932 (patch) | |
tree | 5df1bb38d10f0e377281eab186194cd377f72446 | |
parent | 55e240d0dd36288af6cd195d95f567e0cba4180e (diff) |
ICQ: error 330 also means wrong password
-rw-r--r-- | protocols/Icq10/src/server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Icq10/src/server.cpp b/protocols/Icq10/src/server.cpp index 7c5b8c6e0e..66681913e2 100644 --- a/protocols/Icq10/src/server.cpp +++ b/protocols/Icq10/src/server.cpp @@ -286,6 +286,7 @@ void CIcqProto::OnCheckPassword(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest*) case 200: break; + case 330: case 440: ConnectionFailed(LOGINERR_WRONGPASSWORD); return; |