diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-21 10:53:25 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-21 10:53:25 +0000 |
commit | e06861458d91ca0656177215ac0e0a9d6399aa79 (patch) | |
tree | b39af046eff60e6639c23d7c3d59cf837373b823 /protocols | |
parent | 66f05dca3699dec5a7ab94ae4eaaf9d9aeda376a (diff) |
- fix message receiving
git-svn-id: http://svn.miranda-ng.org/main/trunk@2014 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_subclassing.cpp b/protocols/Skype/src/skype_subclassing.cpp index 5409b9a625..5877d7bcdc 100644 --- a/protocols/Skype/src/skype_subclassing.cpp +++ b/protocols/Skype/src/skype_subclassing.cpp @@ -40,6 +40,7 @@ void CSkype::OnConversationListChange( {
if ((type == Conversation::INBOX_CONVERSATIONS) && (added) && (!inbox.contains(conversation)))
{
+ conversation.fetch();
inbox.append(conversation);
if (this->proto)
(proto->*callback)(conversation->ref());
|