Fix perennial :atom issue

This commit is contained in:
Thelonius Kort
2023-01-23 15:37:47 +01:00
parent 0a10a5c12c
commit 2db0ff06ac
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ defmodule Outlook.Articles.InternalTree do
def cast(_), do: :error
def load(tree) when is_binary(tree) do
{:ok, Jason.decode!(tree, keys: :atoms!) |> from_json}
{:ok, Jason.decode!(tree, keys: :atoms) |> from_json}
end
def dump(tree) when is_list(tree) do