Fix a bug where FBOS would not honor an "AUTO UPDATE" value of "false".

qa/10.0.0
Rick Carlino 2020-05-18 13:32:02 -05:00
parent 1158263405
commit 6deea2785d
3 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@
* Deprecate `resource_update` RPC
* Introduce `update_resource` RPC, which allows users to modify variables from the sequence editor.
* Genesis v1.5 and Express v1.0 firmware updates.
* Fix a bug where FBOS would not honor an "AUTO UPDATE" value of "false".
# 9.2.2

View File

@ -1 +1 @@
10.0.0-rc43
10.0.0-rc44

View File

@ -542,7 +542,7 @@ defmodule FarmbotOS.Platform.Target.NervesHubClient do
"ota_hour = #{ota_hour || "null"} timezone = #{timezone || "null"}"
)
true
!!auto_update
end
result && !currently_downloading?()