summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skypekit/contact.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2013-07-03 19:45:53 +0000
committerAlexander Lantsev <aunsane@gmail.com>2013-07-03 19:45:53 +0000
commitaa312e59cd0065e20ffdf78cd49811ba0520c0bd (patch)
tree2a098fa7c69c2868a801d1acb8f2842c4e37dcfe /protocols/Skype/src/skypekit/contact.cpp
parent8ec882fcf4a57256daa439d85d29fcbf3a1d06af (diff)
Skype:
- fixed files(contacts) sending in conference (issue #397) - fixes in contacts blocking - some small fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@5223 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skypekit/contact.cpp')
-rw-r--r--protocols/Skype/src/skypekit/contact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skypekit/contact.cpp b/protocols/Skype/src/skypekit/contact.cpp
index 622023a040..cd6afab9ef 100644
--- a/protocols/Skype/src/skypekit/contact.cpp
+++ b/protocols/Skype/src/skypekit/contact.cpp
@@ -12,7 +12,7 @@ SEString CContact::GetSid()
SEString result;
CContact::AVAILABILITY availability;
this->GetPropAvailability(availability);
- if (availability == CContact::SKYPEOUT)
+ if (availability == Contact::SKYPEOUT || availability == Contact::BLOCKED_SKYPEOUT)
this->GetPropPstnnumber(result);
else
this->GetPropSkypename(result);