24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-04 21:27:16 +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
end,
User = case getenv("PROXY_USER", "", [4]) of
User = case getenv("PROXY_USER", "", ":") of
[U, Pass] -> [{proxy_auth, {U, Pass}}];
_ -> []
end,