File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -240,6 +240,9 @@ class Checks {
240
240
if (dtmf_mode == null ) return ;
241
241
dst! .dtmf_mode = dtmf_mode;
242
242
},
243
+ 'ice_gathering_timeout' : (Settings src, Settings ? dst) {
244
+ dst! .ice_gathering_timeout = src.ice_gathering_timeout;
245
+ }
243
246
};
244
247
}
245
248
Original file line number Diff line number Diff line change @@ -1673,7 +1673,9 @@ class RTCSession extends EventManager implements Owner {
1673
1673
* Because trickle ICE is not defined in the sip protocol, the delay of
1674
1674
* initiating a call to answer the call waiting will be unacceptable.
1675
1675
*/
1676
- setTimeout (() => ready (), ua.configuration.ice_gathering_timeout);
1676
+ if (ua.configuration.ice_gathering_timeout != 0 ) {
1677
+ setTimeout (() => ready (), ua.configuration.ice_gathering_timeout);
1678
+ }
1677
1679
}
1678
1680
}
1679
1681
};
You can’t perform that action at this time.
0 commit comments