diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-11-26 10:09:33 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-11-26 10:09:33 +0000 |
commit | d1b4426bc12590e1a42bb6a8b06f3e7d9e2afe9d (patch) | |
tree | 21eb1cc8b2ca49a95aad80d0c06826f0b5a0ecfd /protocols | |
parent | 03aa703d9ba4f7a5d962acc77c84e20439b96715 (diff) |
Facebook: Fix for not notifying notifications in chatroom
git-svn-id: http://svn.miranda-ng.org/main/trunk@11088 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/FacebookRM/src/chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/chat.cpp b/protocols/FacebookRM/src/chat.cpp index 1e81e1ffaa..618b86f85e 100644 --- a/protocols/FacebookRM/src/chat.cpp +++ b/protocols/FacebookRM/src/chat.cpp @@ -437,7 +437,7 @@ void FacebookProto::UpdateNotificationsChatRoom(facebook_notification *notificat GCEVENT gce = { sizeof(gce), &gcd };
gce.ptszText = _A2T(smessage.c_str(), CP_UTF8);
gce.time = notification->time ? notification->time : ::time(NULL);
- gce.bIsMe = true;
+ gce.bIsMe = false;
gce.dwFlags |= GCEF_ADDTOLOG;
gce.ptszNick = TranslateT("Notifications");
gce.ptszUID = _T(FACEBOOK_NOTIFICATIONS_CHATROOM);
|