diff options
author | George Hazan <ghazan@miranda.im> | 2020-01-29 20:26:01 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-01-29 20:26:01 +0300 |
commit | 22985cfd94e02d1308b1facd22359c863dcf8aba (patch) | |
tree | 7b4f251009d22c25a422f93fdc32eac815b38952 /protocols/SkypeWeb/src/skype_proto.cpp | |
parent | 8d60f01ae16e88730284757f0a062300b63b2b2d (diff) |
unneded checks removed
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.cpp b/protocols/SkypeWeb/src/skype_proto.cpp index 581bee884c..6ebe23a08d 100644 --- a/protocols/SkypeWeb/src/skype_proto.cpp +++ b/protocols/SkypeWeb/src/skype_proto.cpp @@ -134,9 +134,6 @@ int CSkypeProto::SetAwayMsg(int, const wchar_t *msg) HANDLE CSkypeProto::GetAwayMsg(MCONTACT hContact) { PushRequest(new GetProfileRequest(this, Contacts[hContact]), [this, hContact](const NETLIBHTTPREQUEST *response) { - if (!response || !response->pData) - return; - JsonReply reply(response); if (reply.error()) return; |