deferred_config
deferred_config copied to clipboard
fix: system tuple for boolean values
The bugs occur when you want to use an environment variable for boolean config and the default is true
.
For example:
bool_conf: {:system, "BOOLEAN", true, {String, :to_atom}}
The fix is simple, we use a case statement to detect nil
instead of using the ||
operator