onConfigChanged - Execution Hook

onConfigChanged is called when the configuration is changed. This function has a 2 second timeout limit.

onConfigChanged(change, internal)

Parameter Type Description
changed boolean true when user has updated config
internal boolean true when an internal config update
Info

This is not called when Lua boot.

Example

function onConfigChanged(ch, ich)
  log.write('change!')
end
Caution

It is not immediately possible to tell what has been changed, to determine what action should be taken.