From 60a294d687c3719a5aeb851a6d70d5532e0e2aed Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Sat, 29 Jun 2019 15:36:24 +0100 Subject: [PATCH] nwfmqtt: remove deprecated autoreconn option NFC; it was false anyway. --- net/nwfmqtt.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/nwfmqtt.lua b/net/nwfmqtt.lua index 086652f..2cc6e2a 100644 --- a/net/nwfmqtt.lua +++ b/net/nwfmqtt.lua @@ -34,7 +34,7 @@ function self.connect(m,cf) -- make a connection with parameters from json file broker = broker or "iot.eclipse.org" port = port or 1883 secure = (secure == 1) or 0 - return m:connect(broker,port,secure,0) + return m:connect(broker,port,secure) end function self.suball(m,fn) -- subscribe to all lines in a file if file.open(fn) then -- 2.50.1