diff options
author | George Hazan <ghazan@miranda.im> | 2020-06-04 21:50:36 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-06-04 21:50:36 +0300 |
commit | 15d1c4c7d318d71b9c06ebced7ed191b7a02a0ec (patch) | |
tree | f2c146387f0a05672ae756fa5fbfbe572690f63c /protocols/SkypeWeb/src/skype_files.cpp | |
parent | 932be7eac7944a69a1fe1acadcbcca2743377b3f (diff) |
fixes #2410 (Problems with (false) offline contacts in skype protocol)
Diffstat (limited to 'protocols/SkypeWeb/src/skype_files.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_files.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/SkypeWeb/src/skype_files.cpp b/protocols/SkypeWeb/src/skype_files.cpp index 8f0c94eaa7..4bf25eee6a 100644 --- a/protocols/SkypeWeb/src/skype_files.cpp +++ b/protocols/SkypeWeb/src/skype_files.cpp @@ -25,7 +25,7 @@ void CSkypeProto::SendFileThread(void *p) }
ProtoBroadcastAck(fup->hContact, ACKTYPE_FILE, ACKRESULT_CONNECTING, (HANDLE)fup);
- SendRequest(new ASMObjectCreateRequest(this, fup));
+ PushRequest(new ASMObjectCreateRequest(this, fup));
}
void CSkypeProto::OnASMObjectCreated(NETLIBHTTPREQUEST *response, AsyncHttpRequest *pRequest)
@@ -70,7 +70,7 @@ LBL_Error: }
fup->size = lBytes;
ProtoBroadcastAck(fup->hContact, ACKTYPE_FILE, ACKRESULT_INITIALISING, (HANDLE)fup);
- SendRequest(new ASMObjectUploadRequest(this, strObjectId.c_str(), pData, lBytes, fup));
+ PushRequest(new ASMObjectUploadRequest(this, strObjectId.c_str(), pData, lBytes, fup));
fclose(pFile);
}
@@ -104,7 +104,7 @@ void CSkypeProto::OnASMObjectUploaded(NETLIBHTTPREQUEST *response, AsyncHttpRequ tinyxml2::XMLPrinter printer(0, true);
doc.Print(&printer);
- SendRequest(new SendMessageRequest(getId(fup->hContact), time(NULL), printer.CStr(), "RichText/Media_GenericFile"));
+ PushRequest(new SendMessageRequest(getId(fup->hContact), time(NULL), printer.CStr(), "RichText/Media_GenericFile"));
ProtoBroadcastAck(fup->hContact, ACKTYPE_FILE, ACKRESULT_SUCCESS, (HANDLE)fup);
delete fup;
|