[UX] SSH: double info dialog timeout (#4417)

I tried to actually use this feature and five seconds isn't enough time to register the relevant IP:port to connect.

I'd add a menu item to call up the info (without a timeout) but this is just a web interface quickie.
This commit is contained in:
Frans de Jonge
2018-12-24 20:36:09 +01:00
committed by GitHub
parent b21a9efa53
commit f1a348b251

View File

@@ -65,7 +65,7 @@ function SSH:start()
logger.dbg("[Network] Launching SSH server : ", cmd)
if os.execute(cmd) == 0 then
local info = InfoMessage:new{
timeout = 5,
timeout = 10,
text = string.format("%s %s \n %s",
_("SSH port: "), self.SSH_port,
Device.retrieveNetworkInfo and Device:retrieveNetworkInfo() or _("Could not retrieve network info.")),