X-Git-Url: https://git.rvb.name/weathermon.git/blobdiff_plain/82c945cbf3ea97175cd2fba31f8ba92b9aade8ba..21464a29a442522e1f34fe885f7060f0fecf9a59:/bin/weathermon

diff --git a/bin/weathermon b/bin/weathermon
index ade5bfa..bd9ca80 100755
--- a/bin/weathermon
+++ b/bin/weathermon
@@ -157,9 +157,6 @@ function processJson(str)
   end
 
   if not (sensor_type==nil or sensor_id==nil or sensor_type=='' or sensor_id=='') then
-    if next(sensor)==nil then
-      sensor["command"]="alarm"
-    end
     local record = {}
     for k,v in pairs(sensor) do
       storeRecord(sensor_id,sensor_type,k,v)
@@ -248,6 +245,9 @@ function processLine(str)
                 return '{'..name..'}'
               end      
             end)
+          if not mqtt_client:socket() then
+            mqtt_client:reconnect()
+          end  
           mqtt_client:publish(mqtt_path,v,0,false)
           mqtt_client:loop()
         end  
@@ -289,6 +289,9 @@ function processLine(str)
               return '{'..name..'}'
             end      
           end)
+        if not mqtt_client:socket() then
+          mqtt_client:reconnect()
+        end  
         mqtt_client:publish(mqtt_path,msg_body,0,false)
         mqtt_client:loop()
       end
@@ -405,6 +408,7 @@ while 1 do
         io.close(f)
       end)  
     end
+
   end)
     
 end