summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-01-03 20:14:23 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-01-03 20:14:23 +0300
commitca6eff4cc054b80e91b98ad25a30515a54084c3e (patch)
tree295d7aeb7ebbc38a62608805ab412c254ebf5528 /protocols
parent5ce1ad352934754832199a375276328bb20a3b67 (diff)
ICQ: fix for event polling
Diffstat (limited to 'protocols')
-rw-r--r--protocols/Icq10/src/server.cpp2
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;