diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-06-12 12:36:39 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-06-12 12:36:39 +0000 |
commit | 39c0180794b837d1c1525791cb193b8b0a49e703 (patch) | |
tree | ba80651a280fe7b7e8855af9d43ae133d2fe1110 /protocols/FacebookRM/src/communication.cpp | |
parent | cc4c50d725df57a51a69fcefa94f5812ab56b6f3 (diff) |
Facebook: Fixed and improved duplicit messages checking. Version bump.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4924 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/communication.cpp')
-rw-r--r-- | protocols/FacebookRM/src/communication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/communication.cpp b/protocols/FacebookRM/src/communication.cpp index cb2e0a3f4a..39cc38d5b2 100644 --- a/protocols/FacebookRM/src/communication.cpp +++ b/protocols/FacebookRM/src/communication.cpp @@ -1167,7 +1167,7 @@ bool facebook_client::send_message(std::string message_recipient, std::string me {
// Remember this message id
std::string mid = utils::text::source_get_value(&resp.data, 2, "\"message_id\":\"", "\"");
- messages_sent.insert(mid);
+ messages_ignore.insert(std::make_pair(mid, false));
} break;
//case 1356002: // You are offline - wtf??
|