Fix compiler warning

pull/447/head
connor rigby 2018-02-15 07:58:49 -08:00
parent e39bf9341f
commit 5f57b46ee2
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ defmodule Farmbot.BotState.Transport.AMQP do
{:ok, %{"body" => config}} ->
# Logger.info 1, "Got fbos config from amqp: #{inspect config}"
old = state.state_cache.configuration
updated = Farmbot.Bootstrap.SettingsSync.apply_map(old, config)
updated = Farmbot.Bootstrap.SettingsSync.apply_os_map(old, config)
push_bot_state(state.chan, state.bot, %{state.state_cache | configuration: updated})
{:noreply, [], state}
end