diff --git a/CHANGELOG.md b/CHANGELOG.md index a539e19..3aca643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +3,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). Changelog based on guidelines from [Keep a CHANGELOG](http://keepachangelog.com/). +## 1.0.2 +#### Fixed: +- script_time_radar.lua had a bug, not sending messages. + ## 1.0.1 #### Fixed: -- script_timae_radar.lua script now uses alert virtual hardware device with status updates. -- script_timae_traffic.lua script now uses alert virtual hardware device with status updates. +- script_time_radar.lua script now uses alert virtual hardware device with status updates. +- script_time_traffic.lua script now uses alert virtual hardware device with status updates. ## 1.0.0 #### Added: -- script_timae_radar.lua script. -- script_timae_traffic.lua script. \ No newline at end of file +- script_time_radar.lua script. +- script_time_traffic.lua script. \ No newline at end of file diff --git a/script_time_radar.lua b/script_time_radar.lua index 1438acd..3ab02a9 100644 --- a/script_time_radar.lua +++ b/script_time_radar.lua @@ -95,7 +95,7 @@ end message = message.." (update "..tostring(os.date("%H:%M"))..")" -- send message if radars are found -if radar_found and message_sent == 0 then +if total_radars > 0 and message_sent == 0 then commandArray["SendNotification"] = message commandArray["Variable:"..user_variable_name] = "1" end