summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/skype_polling.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/SkypeWeb/src/skype_polling.cpp')
-rw-r--r--protocols/SkypeWeb/src/skype_polling.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/protocols/SkypeWeb/src/skype_polling.cpp b/protocols/SkypeWeb/src/skype_polling.cpp
index e0dac080bc..5a680dab30 100644
--- a/protocols/SkypeWeb/src/skype_polling.cpp
+++ b/protocols/SkypeWeb/src/skype_polling.cpp
@@ -189,20 +189,5 @@ void CSkypeProto::ProcessUserPresence(const JSONNode &node)
}
}
-void CSkypeProto::ProcessNewMessage(const JSONNode &node)
-{
- debugLogA(__FUNCTION__);
-
- std::string conversationLink = node["conversationLink"].as_string();
-
- int iUserType;
- UrlToSkypeId(conversationLink.c_str(), &iUserType);
-
- if (iUserType == 2 || iUserType == 8)
- OnPrivateMessageEvent(node);
- else if (iUserType == 19)
- OnChatEvent(node);
-}
-
void CSkypeProto::ProcessConversationUpdate(const JSONNode &) {}
void CSkypeProto::ProcessThreadUpdate(const JSONNode &) {}