From 2af7470ee5a6d994b0fd558f7e45b1be90618cda Mon Sep 17 00:00:00 2001 From: Tobias Ollmann Date: Wed, 18 Sep 2024 13:23:45 +0200 Subject: [PATCH] fix: make optional cname in RTCRTCPParameters nullable it's hard to find documentation for this, but at least in Safari 15, cname is not defined --- lib/src/rtc_rtcp_parameters.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/rtc_rtcp_parameters.dart b/lib/src/rtc_rtcp_parameters.dart index 5c2ee56..64e1811 100644 --- a/lib/src/rtc_rtcp_parameters.dart +++ b/lib/src/rtc_rtcp_parameters.dart @@ -5,7 +5,7 @@ class RTCRTCPParameters { } /// The Canonical Name used by RTCP - String cname; + String? cname; /// Whether reduced size RTCP is configured or compound RTCP bool reducedSize;