Skip to content

Commit

Permalink
Make sure we use updated fast_tls
Browse files Browse the repository at this point in the history
  • Loading branch information
prefiks committed Aug 23, 2024
1 parent 8936f56 commit 1bc5886
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

{deps, [{p1_utils, "~> 1.0.25", {git, "https://github.com/processone/p1_utils", {tag, "1.0.26"}}},
{fast_xml, "~> 1.1.51", {git, "https://github.com/processone/fast_xml", {tag, "1.1.52"}}},
{fast_tls, "~> 1.1.19", {git, "https://github.com/processone/fast_tls", {tag, "1.1.21"}}},
{fast_tls, "~> 1.1.19", {git, "https://github.com/processone/fast_tls", "75a08772f0ffddfed0441bfdc7e7f9a5adb3862fe3"}},
{ezlib, "~> 1.0.12", {git, "https://github.com/processone/ezlib", {tag, "1.0.13"}}},
{idna, "~> 6.0", {git, "https://github.com/benoitc/erlang-idna", {tag, "6.0.0"}}},
{stringprep, "~> 1.0.29", {git, "https://github.com/processone/stringprep", {tag, "1.0.30"}}}]}.
Expand Down
2 changes: 1 addition & 1 deletion src/xmpp_stream_out.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1406,7 +1406,7 @@ connect(AddrPorts, State) ->
case starttls(Socket, State) of
{ok, TLSSocket} ->
{ok, TLSSocket, {Addr, Port, TLS}};
{error, Why} ->
{error, _Why} ->
connect(Rest, State)
end;
{ok, Socket, {Addr, Port, TLS = false}, _Rest} ->
Expand Down

0 comments on commit 1bc5886

Please sign in to comment.