From 8abb07d1f3529c52147a98273f59b0ff70155e39 Mon Sep 17 00:00:00 2001 From: Andrey Tvorozhkov Date: Thu, 15 Feb 2024 06:07:25 +0300 Subject: [PATCH] Fix --- lite-server-daemon/adnl-lite-proxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lite-server-daemon/adnl-lite-proxy.cpp b/lite-server-daemon/adnl-lite-proxy.cpp index e8efc4700..5df3d4756 100644 --- a/lite-server-daemon/adnl-lite-proxy.cpp +++ b/lite-server-daemon/adnl-lite-proxy.cpp @@ -39,7 +39,7 @@ class LiteProxy : public td::actor::Actor { LiteProxy(std::string config_path, std::string db_path, std::string address) { config_path_ = std::move(config_path); db_root_ = std::move(db_path); - address_ = td::IPAddress::get_ip_address(std::move(address)).move_as_ok(); + address_.init_host_port(std::move(address)).ensure(); } void start_up() override {