forked from AkkomaGang/akkoma
Merge remote-tracking branch 'origin/develop' into feature/chat
This commit is contained in:
commit
1c90bfb4f6
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ defp verify(user, password, _user_id) do
|
|||
defp decode_header(conn) do
|
||||
with ["Basic " <> header] <- get_req_header(conn, "authorization"),
|
||||
{:ok, userinfo} <- Base.decode64(header),
|
||||
[username, password] <- String.split(userinfo, ":")
|
||||
[username, password] <- String.split(userinfo, ":", parts: 2)
|
||||
do
|
||||
{:ok, username, password}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue