Fix LDAP user registration (#229)
ci/woodpecker/push/woodpecker Pipeline is pending Details

Simple fix for LDAP user registration. I'm not sure what changed but I managed to get Akkoma running in a debug session and figured out it was missing a match for an extra value at the end. I don't know Elixir all that well so I'm not sure if this was the correct way to do it... but it works. :)

Reviewed-on: #229
Co-authored-by: nullobsi <me@nullob.si>
Co-committed-by: nullobsi <me@nullob.si>
This commit is contained in:
nullobsi 2022-11-01 14:17:55 +00:00 committed by floatingghost
parent d782140e2b
commit cbc693f832
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ defmodule Pleroma.Web.Auth.LDAPAuthenticator do
{:scope, :eldap.wholeSubtree()}, {:scope, :eldap.wholeSubtree()},
{:timeout, @search_timeout} {:timeout, @search_timeout}
]) do ]) do
{:ok, {:eldap_search_result, [{:eldap_entry, _, attributes}], _}} -> {:ok, {:eldap_search_result, [{:eldap_entry, _, attributes}], _, _}} ->
params = %{ params = %{
name: name, name: name,
nickname: name, nickname: name,