Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Feb 15, 2024
1 parent 9426852 commit 8abb07d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lite-server-daemon/adnl-lite-proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8abb07d

Please sign in to comment.