1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 09:49:18 +02:00

Change split character in PROXY_USER from \x04 to :

This is clearly typo
This commit is contained in:
Paweł Chmielowski 2020-10-29 16:36:18 +01:00
parent d02c7d3b3b
commit ec61c2f3dc

View file

@ -326,7 +326,7 @@ geturl(Url) ->
_ -> _ ->
ok ok
end, end,
User = case getenv("PROXY_USER", "", [4]) of User = case getenv("PROXY_USER", "", ":") of
[U, Pass] -> [{proxy_auth, {U, Pass}}]; [U, Pass] -> [{proxy_auth, {U, Pass}}];
_ -> [] _ -> []
end, end,