aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mtproto.cpp
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2022-06-14 16:11:38 +0300
committerlevlam <levlam@telegram.org>2022-06-14 16:11:38 +0300
commit782aa6a2ec3ed0ba0249510f9906e6f32a02364c (patch)
tree179418f67ef94f896e20ea76b0052957d16e23f4 /test/mtproto.cpp
parentf12da0fed558c149e5306f998a5ffa904ce885af (diff)
Minor fixes.
Diffstat (limited to 'test/mtproto.cpp')
-rw-r--r--test/mtproto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mtproto.cpp b/test/mtproto.cpp
index 91c82abe5..58eff4356 100644
--- a/test/mtproto.cpp
+++ b/test/mtproto.cpp
@@ -470,7 +470,7 @@ class Socks5TestActor final : public td::Actor {
if (r_socket.is_error()) {
return promise.set_error(td::Status::Error(PSTRING() << "Failed to open socket: " << r_socket.error()));
}
- td::create_actor<td::Socks5>("socks5", r_socket.move_as_ok(), mtproto_ip_address, "", "",
+ td::create_actor<td::Socks5>("Socks5", r_socket.move_as_ok(), mtproto_ip_address, "", "",
td::make_unique<Callback>(std::move(promise)), actor_shared(this))
.release();
}