diff options
Diffstat (limited to 'FacebookRM/chat.cpp')
-rw-r--r-- | FacebookRM/chat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FacebookRM/chat.cpp b/FacebookRM/chat.cpp index a7c2ca5..7326254 100644 --- a/FacebookRM/chat.cpp +++ b/FacebookRM/chat.cpp @@ -105,9 +105,9 @@ void FacebookProto::AddChatContact(const char *chat_id, const char *id, const ch gce.time = ::time(NULL);
gce.bIsMe = !strcmp(id, facy.self_.user_id.c_str());
-/* if (gce.bIsMe)
+ if (gce.bIsMe)
gce.ptszStatus = _T("Admin");
- else*/
+ else
gce.ptszStatus = _T("Normal");
CallServiceSync(MS_GC_EVENT,0,reinterpret_cast<LPARAM>(&gce));
|