Skip to content

Commit c49530a

Browse files
authored
fix: make optional cname in RTCRTCPParameters nullable (#27)
it's hard to find documentation for this, but at least in Safari 15, cname is not defined
1 parent 845fc68 commit c49530a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/rtc_rtcp_parameters.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class RTCRTCPParameters {
55
}
66

77
/// The Canonical Name used by RTCP
8-
String cname;
8+
String? cname;
99

1010
/// Whether reduced size RTCP is configured or compound RTCP
1111
bool reducedSize;

0 commit comments

Comments
 (0)