logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 32a7b4dadd5133c58b4de5f8ac05ebd18a174df7
parent: 544bdbfb90d764a5aba8ed07c13b842838d76d73
Author: rinpatch <rinpatch@sdf.org>
Date:   Mon, 10 Feb 2020 18:25:12 +0000

Merge branch 'fix/compilation-error-docs' into 'develop'

Fix a compilation error under certain circumstances

See merge request pleroma/pleroma!2193

Diffstat:

Mlib/pleroma/docs/generator.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/docs/generator.ex b/lib/pleroma/docs/generator.ex @@ -13,7 +13,7 @@ defmodule Pleroma.Docs.Generator do |> Enum.filter(&String.ends_with?(&1, ".ex")) |> Enum.map(fn filename -> module = filename |> String.trim_trailing(".ex") |> Macro.camelize() - String.to_existing_atom(start <> module) + String.to_atom(start <> module) end) end end