summaryrefslogtreecommitdiff
path: root/src/Api.cpp
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2018-07-04 19:27:20 +0300
committerEgor Pugin <egor.pugin@gmail.com>2018-07-04 19:27:20 +0300
commitac3e87822afb6065a82dfe547ecbc0c307a04147 (patch)
treeb1d3895de28ce746cf15e7378e1bd22c2fac2f0e /src/Api.cpp
parentdf3898ed79dec253b7f013ed1a6c2f1f0e98cb40 (diff)
Remove string literal.
Diffstat (limited to 'src/Api.cpp')
-rw-r--r--src/Api.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Api.cpp b/src/Api.cpp
index 3bb200b..abc99de 100644
--- a/src/Api.cpp
+++ b/src/Api.cpp
@@ -861,7 +861,7 @@ Message::Ptr Api::editMessageText(const string& text, int64_t chatId, int32_t me
return TgTypeParser::getInstance().parseJsonAndGetMessage(p);
} else {
return nullptr;
- }
+ }
}
Message::Ptr Api::editMessageCaption(int64_t chatId, int32_t messageId, const string& caption,
@@ -983,7 +983,7 @@ WebhookInfo::Ptr Api::getWebhookInfo() const {
}
if (p.get<string>("url","") != string("")) {
return TgTypeParser::getInstance().parseJsonAndGetWebhookInfo(p);
- }
+ }
else {
return nullptr;
}
@@ -1199,7 +1199,7 @@ ptree Api::sendRequest(const string& method, const vector<HttpReqArg>& args) con
url += "/";
url += method;
- string serverResponse = _httpClientDriver.makeRequest(url, args);
+ string serverResponse = _httpClientDriver.makeRequest(url, args);
if (!serverResponse.compare(0, 6, "<html>")) {
throw TgException("tgbot-cpp library have got html page instead of json response. Maybe you entered wrong bot token.");
}
@@ -1222,7 +1222,7 @@ string Api::downloadFile(const string& filePath, const std::vector<HttpReqArg>&
url += "/";
url += filePath;
- string serverResponse = _httpClientDriver.makeRequest(url, args);
+ string serverResponse = _httpClientDriver.makeRequest(url, args);
return serverResponse;
}