Skip to content

Commit

Permalink
Fix crash on gathering transactions (#63)
Browse files Browse the repository at this point in the history
* Fix crash on gathering transactions

* Update deps

---------

Co-authored-by: Jakub Pisarek <[email protected]>
  • Loading branch information
mickel8 and sgfn authored Nov 27, 2024
1 parent 5e88c90 commit d4d1a63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ex_ice/priv/ice_agent.ex
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,8 @@ defmodule ExICE.Priv.ICEAgent do
{:send, dst, data, client} ->
cand = %{cand | client: client}
ice_agent = put_in(ice_agent.local_cands[cand.base.id], cand)
do_send(ice_agent, cand, dst, data)
{_result, ice_agent} = do_send(ice_agent, cand, dst, data)
ice_agent

{:error, _reason, client} ->
Logger.debug("""
Expand Down

0 comments on commit d4d1a63

Please sign in to comment.