don't send user dto back

This commit is contained in:
Alex Bezdieniezhnykh
2025-04-17 00:18:40 +03:00
parent 1287c13516
commit 0237e279a5
-1
View File
@@ -62,7 +62,6 @@ cdef class CommandProcessor:
cdef User user cdef User user
self.api_client.set_credentials(Credentials.from_msgpack(command.data)) self.api_client.set_credentials(Credentials.from_msgpack(command.data))
user = self.api_client.get_user() user = self.api_client.get_user()
self.remote_handler.send(command.client_id, user.serialize())
cdef load_file(self, RemoteCommand command): cdef load_file(self, RemoteCommand command):
cdef FileData file_data = FileData.from_msgpack(command.data) cdef FileData file_data = FileData.from_msgpack(command.data)