Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mayel committed Dec 4, 2024
1 parent c8c761e commit ff68901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/config_settings/config.ex
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
defmodule Bonfire.Common.Config do
@moduledoc "Helpers to get app/extension OTP config, or to override a config key. Basically a wrapper of `Application.get_env/3` and `Application.put_env/3`."

use Bonfire.Common.E
import Bonfire.Common.Extend
import Untangle
alias Bonfire.Common.E
alias Bonfire.Common.Utils
alias Bonfire.Common.Extend
alias Bonfire.Common.Enums
Expand Down Expand Up @@ -321,7 +321,7 @@ defmodule Bonfire.Common.Config do
access_nil = fn key ->
fn
:get, data, next ->
next.(e(data, key, []))
next.(E.ed(data, key, []))

:get_and_update, data, next ->
data = Keyword.new(data)
Expand Down

0 comments on commit ff68901

Please sign in to comment.