Better variable name.

GitOrigin-RevId: 05585184131d2628b8099414196ca71bf3b03f15
This commit is contained in:
levlam 2019-03-29 05:30:14 +03:00
parent 93d5cc1a45
commit e51029112c
1 changed files with 2 additions and 2 deletions

View File

@ -2996,9 +2996,9 @@ class CliClient final : public Actor {
string question;
std::tie(chat_id, args) = split(args);
std::tie(question, args) = split(args);
auto answers = full_split(args);
auto options = full_split(args);
send_message(chat_id, td_api::make_object<td_api::inputMessagePoll>(question, std::move(answers)));
send_message(chat_id, td_api::make_object<td_api::inputMessagePoll>(question, std::move(options)));
} else if (op == "sp") {
string chat_id;
string photo_path;