From c610593e753644a8f63ee7722de44b68677e38c5 Mon Sep 17 00:00:00 2001 From: Arseny Smirnov Date: Fri, 2 Nov 2018 18:55:55 +0300 Subject: [PATCH] SessionProxy: bugfix GitOrigin-RevId: f6874238d3aa79e980b3365dc19d9e9e0f0f3c22 --- td/telegram/net/SessionProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/net/SessionProxy.cpp b/td/telegram/net/SessionProxy.cpp index 02dc016e8..6621c2377 100644 --- a/td/telegram/net/SessionProxy.cpp +++ b/td/telegram/net/SessionProxy.cpp @@ -186,7 +186,7 @@ void SessionProxy::open_session(bool force) { void SessionProxy::update_auth_state() { auth_state_ = auth_data_->get_auth_state().first; - open_session(true); + open_session(); for (auto &query : pending_queries_) { query->debug(PSTRING() << get_name() << ": sent to session"); send_closure(session_, &Session::send, std::move(query));