summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-05-30 08:19:35 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-05-30 08:19:35 +0000
commit5d3a568cb6011dbfc1e56d8c6bf86ef5d8b0299f (patch)
tree3e7c2213fbe45674e39d6b4d38a04763a9198093 /protocols/SkypeWeb
parent1b0c3c60a9994b61fd9490dd373c49fd5ad83162 (diff)
SkypeWeb: Fix for leaved chats loading
git-svn-id: http://svn.miranda-ng.org/main/trunk@13905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r--protocols/SkypeWeb/src/skype_chatrooms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp
index b9feae34e1..1a3542b26f 100644
--- a/protocols/SkypeWeb/src/skype_chatrooms.cpp
+++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp
@@ -440,7 +440,7 @@ void CSkypeProto::OnGetChatInfo(const NETLIBHTTPREQUEST *response, void *p)
const JSONNode &members = root["members"];
const JSONNode &properties = root["properties"];
- if (!properties["capabilities"])
+ if (!properties["capabilities"] || properties["capabilities"].empty())
return;
ptrA chatId(ChatUrlToName(root["messages"].as_string().c_str()));