From 0c3e3906c7282e549fb6ae54b846f62c978ae0d2 Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 27 Jun 2019 18:46:25 +0300 Subject: [PATCH] Temporarily disable new pings. GitOrigin-RevId: ac3d2580d2dd77b333fee51db59f54b92bf24484 --- td/telegram/net/Session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/net/Session.cpp b/td/telegram/net/Session.cpp index 7640b83d..afb146d3 100644 --- a/td/telegram/net/Session.cpp +++ b/td/telegram/net/Session.cpp @@ -894,7 +894,7 @@ void Session::connection_open(ConnectionInfo *info, bool ask_info) { VLOG(dc) << "Request new connection"; unique_ptr auth_data; if (auth_data_.use_pfs() && auth_data_.has_auth_key(Time::now())) { - auth_data = make_unique(auth_data_); + // auth_data = make_unique(auth_data_); } callback_->request_raw_connection(std::move(auth_data), std::move(promise)); }