We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4782ace commit 261122aCopy full SHA for 261122a
lib/ex_webrtc/peer_connection.ex
@@ -2063,6 +2063,9 @@ defmodule ExWebRTC.PeerConnection do
2063
nil ->
2064
{nil, state}
2065
2066
+ {%{sender: %{track: nil}}, _idx} ->
2067
+ {nil, state}
2068
+
2069
# in case NACK was received, but RTX was not negotiated
2070
# as NACK and RTX are negotiated independently
2071
{%{sender: %{rtx_pt: nil}} = tr, _idx} ->
@@ -2087,6 +2090,9 @@ defmodule ExWebRTC.PeerConnection do
2087
2090
2088
2091
2089
2092
2093
2094
2095
2096
{tr, idx} ->
2097
tr = RTPTransceiver.receive_pli(tr, pli)
2098
transceivers = List.replace_at(state.transceivers, idx, tr)
0 commit comments