Skip to content

Commit

Permalink
Fix hard coded app
Browse files Browse the repository at this point in the history
  • Loading branch information
nhpip committed Feb 7, 2024
1 parent 1a2d3c3 commit 0a09ef5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/iex_history2.ex
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ defmodule IExHistory2 do
end

defp do_load_config(app) when is_atom(app) do
Application.get_env(:collection_server, __MODULE__, [])
Application.get_env(app, __MODULE__, [])
end

defp do_load_config(config), do: config
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule IExHistory2.MixProject do
def project do
[
app: :iex_history2,
version: "5.3.1",
version: "5.3.2",
elixir: "~> 1.16.0-otp-26",
description: description(),
package: package(),
Expand Down

0 comments on commit 0a09ef5

Please sign in to comment.