diff options
-rw-r--r-- | main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ hosts = {}; if config.hosts and #config.hosts > 0 then for _, host in pairs(config.hosts) do - hosts[host] = {type = "local", connected = true, sessions = {}}; + hosts[host] = {type = "local", connected = true, sessions = {}, host = host}; end else error("No hosts defined in the configuration file"); end |