summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_events.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2012-12-21 19:30:58 +0000
committerAlexander Lantsev <aunsane@gmail.com>2012-12-21 19:30:58 +0000
commite0030d9abd9ecd7bf4ab41a7269c051601576a2d (patch)
treea97841b2fad6b5ac93d04df00025e28640bfe7fd /protocols/Skype/src/skype_events.cpp
parent39b2a05de9a06cf58682694e29f98819d189a9e3 (diff)
- fixed name of new chat in CL
- fixed own messages in chat git-svn-id: http://svn.miranda-ng.org/main/trunk@2783 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_events.cpp')
-rw-r--r--protocols/Skype/src/skype_events.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_events.cpp b/protocols/Skype/src/skype_events.cpp
index 793a09a4f3..9b1e442133 100644
--- a/protocols/Skype/src/skype_events.cpp
+++ b/protocols/Skype/src/skype_events.cpp
@@ -170,7 +170,8 @@ void CSkypeProto::OnMessage(CConversation::Ref conversation, CMessage::Ref messa
HANDLE hContact = this->GetChatRoomByID(cid);
if ( !hContact || ::DBGetContactSettingWord(hContact, this->m_szModuleName, "Status", ID_STATUS_OFFLINE) == ID_STATUS_OFFLINE)
{
- this->StartChat(cid);
+ SEStringList empty;
+ this->StartChat(cid, empty);
CParticipant::Refs participants;
conversation->GetParticipants(participants, CConversation::OTHER_CONSUMERS);