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
1 changed files with 1 additions and 1 deletions

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,