simplify ui

This commit is contained in:
kepler155c@gmail.com
2017-10-11 11:37:52 -04:00
parent 05c99b583a
commit 852ad193f0
11 changed files with 260 additions and 291 deletions

View File

@@ -29,10 +29,10 @@ if not password then
end
print('connecting...')
local socket = Socket.connect(remoteId, 19)
local socket, msg = Socket.connect(remoteId, 19)
if not socket then
error('Unable to connect to ' .. remoteId .. ' on port 19')
error(msg)
end
local publicKey = Security.getPublicKey()