diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-07-17 13:55:22 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-07-17 13:55:22 +0000 |
commit | 7cbf9e427b934de647350f1eb1552a3f7ea2992b (patch) | |
tree | 753258b7a7f1b48e3491b88de695cd5b5a84e62f /protocols/FacebookRM/src/communication.cpp | |
parent | 1b738108deb1ec217115e38dde3ebd2210870213 (diff) |
Facebook: Fixed searching by ID people which doesn't have username
git-svn-id: http://svn.miranda-ng.org/main/trunk@5399 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 5ef0009d30..0ebb32ba3b 100644 --- a/protocols/FacebookRM/src/communication.cpp +++ b/protocols/FacebookRM/src/communication.cpp @@ -383,7 +383,7 @@ std::string facebook_client::choose_action(RequestType request_type, std::string case REQUEST_USER_INFO:
{
- std::string action = "/%s?v=info";
+ std::string action = "/%sv=info";
if (get_data != NULL) {
utils::text::replace_all(&action, "%s", *get_data);
}
|