forked from AkkomaGang/akkoma
Ensure it doesn't break on elixir1.14
This commit is contained in:
parent
ec5db753b9
commit
59af68c600
1 changed files with 3 additions and 1 deletions
|
@ -156,8 +156,10 @@ def load_all_pleroma_modules do
|
||||||
mod
|
mod
|
||||||
|> to_string()
|
|> to_string()
|
||||||
|> String.to_existing_atom()
|
|> String.to_existing_atom()
|
||||||
|
|> Code.ensure_loaded!()
|
||||||
end)
|
end)
|
||||||
|> Code.ensure_all_loaded!()
|
# Use this when 1.15 is standard
|
||||||
|
#|> Code.ensure_all_loaded!()
|
||||||
end
|
end
|
||||||
|
|
||||||
defp cachex_children do
|
defp cachex_children do
|
||||||
|
|
Loading…
Reference in a new issue