fixed a stupid bug in fget

This commit is contained in:
Izaya 2018-04-15 18:28:41 +10:00
parent 8731e9bbbf
commit b98d4b104f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ local tArgs = {...}
local address, path = tArgs[1], tArgs[2]
local port = 70
local host,nport = host:match("(.+):(%d+)")
local host,nport = address:match("(.+):(%d+)")
port = nport or port
host = host or address