diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-19 15:26:36 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-19 15:26:36 +0000 |
commit | 4213b612a8e10b7dde94f15c0fbd5a023a4d7e55 (patch) | |
tree | 35975fb18ffe822f82a7379251d34cfd00b7ad7e | |
parent | a6af3c23d3c6cc988c72b30277e222a85853bf06 (diff) |
SkypeWeb: Roles fix.
git-svn-id: http://svn.miranda-ng.org/main/trunk@12936 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/SkypeWeb/src/skype_chatrooms.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp index 1d0065c4a3..bc4f755e4c 100644 --- a/protocols/SkypeWeb/src/skype_chatrooms.cpp +++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp @@ -404,14 +404,7 @@ void CSkypeProto::AddChatContact(const TCHAR *tchat_id, const char *id, const ch gce.ptszUID = tid; gce.time = time(NULL); gce.bIsMe = IsMe(id); - - if (gce.bIsMe) { - gce.ptszStatus = TranslateT("Myself"); - } - else - { - gce.ptszStatus = TranslateTS(role); - } + gce.ptszStatus = TranslateTS(role); CallServiceSync(MS_GC_EVENT, 0, reinterpret_cast<LPARAM>(&gce)); } |