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.
rid
ssrc
1 parent 7b57464 commit cebe07aCopy full SHA for cebe07a
lib/src/rtc_rtp_parameters_impl.dart
@@ -81,7 +81,9 @@ class RTCRtpEncodingWeb {
81
'scaleResolutionDownBy': object
82
.getProperty<JSNumber?>('scaleResolutionDownBy'.toJS)
83
?.toDartDouble,
84
- 'ssrc': object.getProperty<JSString?>('ssrc'.toJS)?.toDart
+ 'ssrc': int.tryParse(
85
+ object.getProperty<JSString?>('ssrc'.toJS)?.toDart ?? '0',
86
+ )
87
});
88
}
89
0 commit comments