Skip to content

Commit

Permalink
Fix C++ example.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Nov 4, 2020
1 parent 821398f commit 5c5f3be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/cpp/td_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ class TdExample {
[this](td_api::authorizationStateWaitPassword &) {
std::cout << "Enter authentication password: " << std::flush;
std::string password;
std::getline(std::cin, line);
std::getline(std::cin, password);
send_query(td_api::make_object<td_api::checkAuthenticationPassword>(password),
create_authentication_query_handler());
},
Expand Down

0 comments on commit 5c5f3be

Please sign in to comment.