From e51029112c25c168770e6e342faf25e44a26b13a Mon Sep 17 00:00:00 2001 From: levlam Date: Fri, 29 Mar 2019 05:30:14 +0300 Subject: [PATCH] Better variable name. GitOrigin-RevId: 05585184131d2628b8099414196ca71bf3b03f15 --- td/telegram/cli.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/td/telegram/cli.cpp b/td/telegram/cli.cpp index fe3688f3..a86fd403 100644 --- a/td/telegram/cli.cpp +++ b/td/telegram/cli.cpp @@ -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(question, std::move(answers))); + send_message(chat_id, td_api::make_object(question, std::move(options))); } else if (op == "sp") { string chat_id; string photo_path;