diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-02 23:18:11 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-02 23:18:19 +0300 |
commit | bd007cf5a03ba398546b343a8b7be8aab081dbaa (patch) | |
tree | e6e884f427cbd1beeb49c99fd56d23f9f5687a5e /protocols/Icq10/src/http.cpp | |
parent | 14bc22db14c5c9f2fc7f3797ce968dc0a32805ff (diff) |
fixes #1669 (ICQ10: phone number auth support)
Diffstat (limited to 'protocols/Icq10/src/http.cpp')
-rw-r--r-- | protocols/Icq10/src/http.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/protocols/Icq10/src/http.cpp b/protocols/Icq10/src/http.cpp index 5590ddc596..92154cd13e 100644 --- a/protocols/Icq10/src/http.cpp +++ b/protocols/Icq10/src/http.cpp @@ -27,14 +27,7 @@ void __cdecl CIcqProto::ServerThread(void*) memset(&m_ConnPool, 0, sizeof(m_ConnPool)); m_bTerminated = false; - if (m_dwUin == 0 || mir_wstrlen(m_szPassword) == 0) { - debugLogA("Thread ended, UIN/password are not configured"); - ConnectionFailed(LOGINERR_BADUSERID); - return; - } - debugLogA("CIcqProto::WorkerThread: %s", "entering"); - CheckPassword(); while (true) { WaitForSingleObject(m_evRequestsQueue, 1000); |