diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-03 20:14:23 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-03 20:14:23 +0300 |
commit | ca6eff4cc054b80e91b98ad25a30515a54084c3e (patch) | |
tree | 295d7aeb7ebbc38a62608805ab412c254ebf5528 /protocols | |
parent | 5ce1ad352934754832199a375276328bb20a3b67 (diff) |
ICQ: fix for event polling
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Icq10/src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Icq10/src/server.cpp b/protocols/Icq10/src/server.cpp index 5aee47ddf9..a25b2fe4fb 100644 --- a/protocols/Icq10/src/server.cpp +++ b/protocols/Icq10/src/server.cpp @@ -626,7 +626,7 @@ void __cdecl CIcqProto::PollThread(void*) debugLogA("Polling thread started"); bool bFirst = true; - while (!m_bTerminated) { + while (m_bOnline) { CMStringA szUrl = m_fetchBaseURL; if (bFirst) { bFirst = false; |