diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-10 16:11:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-10 16:11:13 +0300 |
commit | bdfc33e8dbeac3af1c0feb79850d67acd9aa9c61 (patch) | |
tree | 4128bd0de0650388204ab118ad52d23a7a81ff67 /protocols/SkypeWeb/src | |
parent | f7ccba210f13ec0e261345dca5d11a513d590824 (diff) |
Skype: fix for new fast login
Diffstat (limited to 'protocols/SkypeWeb/src')
-rw-r--r-- | protocols/SkypeWeb/src/skype_login.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/protocols/SkypeWeb/src/skype_login.cpp b/protocols/SkypeWeb/src/skype_login.cpp index 98a1a403ec..76977ab6cd 100644 --- a/protocols/SkypeWeb/src/skype_login.cpp +++ b/protocols/SkypeWeb/src/skype_login.cpp @@ -68,7 +68,8 @@ void CSkypeProto::Login() void CSkypeProto::OnLoginOAuth(NETLIBHTTPREQUEST *response, AsyncHttpRequest*)
{
- if (!IsStatusConnecting(m_iStatus)) return;
+ if (!IsStatusConnecting(m_iStatus))
+ return;
if (response == nullptr || response->pData == nullptr) {
ProtoBroadcastAck(NULL, ACKTYPE_LOGIN, ACKRESULT_FAILED, NULL, LOGIN_ERROR_UNKNOWN);
@@ -222,9 +223,6 @@ void CSkypeProto::OnEndpointDeleted(NETLIBHTTPREQUEST *, AsyncHttpRequest *) void CSkypeProto::OnSubscriptionsCreated(NETLIBHTTPREQUEST *response, AsyncHttpRequest*)
{
- if (!IsStatusConnecting(m_iStatus))
- return;
-
if (response == nullptr) {
debugLogA(__FUNCTION__ ": failed to create subscription");
ProtoBroadcastAck(NULL, ACKTYPE_LOGIN, ACKRESULT_FAILED, NULL, LOGIN_ERROR_UNKNOWN);
@@ -253,9 +251,6 @@ void CSkypeProto::SendPresence() void CSkypeProto::OnCapabilitiesSended(NETLIBHTTPREQUEST *response, AsyncHttpRequest*)
{
- if (!IsStatusConnecting(m_iStatus))
- return;
-
if (response == nullptr || response->pData == nullptr) {
ProtoBroadcastAck(NULL, ACKTYPE_LOGIN, ACKRESULT_FAILED, NULL, LOGIN_ERROR_UNKNOWN);
SetStatus(ID_STATUS_OFFLINE);
|