diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-05-22 17:46:12 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-05-22 17:46:12 -0500 |
commit | 38bda7a0475b9f2a904b3ee93b6c4bd48f73ca20 (patch) | |
tree | 2467a84442bbac590d68feb73243fce1e98cdc0d | |
parent | fdb58a7fe68033a6dbf00d6c7f2cd89c0cbe1dcf (diff) | |
download | pleroma-38bda7a0475b9f2a904b3ee93b6c4bd48f73ca20.tar.gz |
Cycles: fix cycle in lib/pleroma/web/auth/authenticator.ex
-rw-r--r-- | lib/pleroma/web/auth/authenticator.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/auth/authenticator.ex b/lib/pleroma/web/auth/authenticator.ex index 84741ee11..4c546ec70 100644 --- a/lib/pleroma/web/auth/authenticator.ex +++ b/lib/pleroma/web/auth/authenticator.ex @@ -8,8 +8,8 @@ defmodule Pleroma.Web.Auth.Authenticator do def implementation do Pleroma.Config.get( - Pleroma.Web.Auth.Authenticator, - Pleroma.Web.Auth.PleromaAuthenticator + __MODULE__, + Module.concat(["Pleroma.Web.Auth.PleromaAuthenticator"]) ) end |