|
@@ -930,7 +930,7 @@ TraceablePeerConnection.prototype.createAnswer
|
930
|
930
|
dumpSDP(answer));
|
931
|
931
|
}
|
932
|
932
|
|
933
|
|
- if (!this.options.disableRtx && !RTCBrowserType.isFirefox()) {
|
|
933
|
+ if (!this.options.disableRtx && RTCBrowserType.supportsRtx()) {
|
934
|
934
|
answer.sdp = this.rtxModifier.modifyRtxSsrcs(answer.sdp);
|
935
|
935
|
this.trace(
|
936
|
936
|
'createAnswerOnSuccess::postTransform (rtx modifier)',
|
|
@@ -1028,7 +1028,7 @@ TraceablePeerConnection.prototype.generateNewStreamSSRCInfo = function() {
|
1028
|
1028
|
groups: []
|
1029
|
1029
|
};
|
1030
|
1030
|
}
|
1031
|
|
- if (!this.options.disableRtx && !RTCBrowserType.isFirefox()) {
|
|
1031
|
+ if (!this.options.disableRtx && RTCBrowserType.supportsRtx()) {
|
1032
|
1032
|
// Specifically use a for loop here because we'll
|
1033
|
1033
|
// be adding to the list we're iterating over, so we
|
1034
|
1034
|
// only want to iterate through the items originally
|