diff options
Diffstat (limited to 'plugins/WhenWasIt')
-rw-r--r-- | plugins/WhenWasIt/src/services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/WhenWasIt/src/services.cpp b/plugins/WhenWasIt/src/services.cpp index 46a8a173a6..f6d27f5a5f 100644 --- a/plugins/WhenWasIt/src/services.cpp +++ b/plugins/WhenWasIt/src/services.cpp @@ -196,7 +196,7 @@ void __cdecl RefreshUserDetailsWorkerThread(void*) MCONTACT hContact = db_find_first();
while (hContact != NULL) {
- CallContactService(hContact, PSS_GETINFO, 0, 0);
+ ProtoChainSend(hContact, PSS_GETINFO, 0, 0);
hContact = db_find_next(hContact);
if (hContact)
Sleep(delay); //sleep for a few seconds between requests
|