diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-21 16:51:03 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-21 16:51:03 +0000 |
commit | 7cbb90a5ab4982cfebd80d7a672078ac96489042 (patch) | |
tree | a6d46042b8c99ec0fde089efc4513b091603ebd6 /protocols/Skype/src/skype_contacts.cpp | |
parent | 107bbb3d271e19fe11d9abc89021c691f5d91602 (diff) |
- fixed protocol connecting
git-svn-id: http://svn.miranda-ng.org/main/trunk@2028 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_contacts.cpp')
-rw-r--r-- | protocols/Skype/src/skype_contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index d24f7d01fe..5b64c6b5fe 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -617,7 +617,7 @@ CContact::AVAILABILITY CSkypeProto::MirandaToSkypeStatus(int status) {
CContact::AVAILABILITY availability = CContact::UNKNOWN;
- switch(this->m_iStatus)
+ switch(status)
{
case ID_STATUS_ONLINE:
availability = CContact::ONLINE;
|