tg_cli: fix send document command

GitOrigin-RevId: 9f210b4d1080c8aa2cafb7a53b073d191edaf35e
This commit is contained in:
Arseny Smirnov 2018-03-13 19:10:26 +03:00
parent 7eb7f540e2
commit 7504f81b72
1 changed files with 1 additions and 7 deletions

View File

@ -2252,13 +2252,7 @@ class CliClient final : public Actor {
std::tie(chat_id, document_path) = split(args);
send_message(chat_id, make_tl_object<td_api::inputMessageDocument>(
as_local_file(document_path), nullptr,
Random::fast(0, 1)
? as_caption(u8"\u1680\u180Etest \u180E\n\u180E\n\u180E\n cap\ttion\u180E\u180E")
: as_caption(u8"\u200C\u200D\u202E "
" "
" "
" "
" abacaba")));
as_caption(u8"\u1680\u180Etest \u180E\n\u180E\n\u180E\n cap\ttion\u180E\u180E")));
} else if (op == "sdt") {
string chat_id;
string document_path;