mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00:00
Fix basic auth for passwords with a colon.
This commit is contained in:
parent
d08a34e88b
commit
c1fa1e8844
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ defmodule Pleroma.Plugs.AuthenticationPlug 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