Skip to content

Commit

Permalink
Handle other case
Browse files Browse the repository at this point in the history
  • Loading branch information
roznawsk committed Oct 9, 2024
1 parent 24ce188 commit d030474
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/ex_webrtc/peer_connection.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2063,6 +2063,9 @@ defmodule ExWebRTC.PeerConnection do
nil ->
{nil, state}

{%{sender: %{track: nil}}, _idx} ->
{nil, state}

# in case NACK was received, but RTX was not negotiated
# as NACK and RTX are negotiated independently
{%{sender: %{rtx_pt: nil}} = tr, _idx} ->
Expand Down

0 comments on commit d030474

Please sign in to comment.