summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2021-05-22 17:46:12 -0500
committerAlex Gleason <alex@alexgleason.me>2021-05-22 17:46:12 -0500
commit38bda7a0475b9f2a904b3ee93b6c4bd48f73ca20 (patch)
tree2467a84442bbac590d68feb73243fce1e98cdc0d
parentfdb58a7fe68033a6dbf00d6c7f2cd89c0cbe1dcf (diff)
Cycles: fix cycle in lib/pleroma/web/auth/authenticator.ex
-rw-r--r--lib/pleroma/web/auth/authenticator.ex4
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