Skip to content

Commit a76eebb

Browse files
committed
hotfix: Add getter override for dc.bufferedAmountLowThreshold.
1 parent 86186a8 commit a76eebb

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
--------------------------------------------
4+
[1.5.3+hotfix.1] - 2025-04-25
5+
6+
* add getter override for dc.bufferedAmountLowThreshold.
47

58
[1.5.3] - 2025-03-24
69

lib/src/rtc_data_channel_impl.dart

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ class RTCDataChannelWeb extends RTCDataChannel {
5353
return _jsDc.bufferedAmount;
5454
}
5555

56+
@override
57+
int? get bufferedAmountLowThreshold => _jsDc.bufferedAmountLowThreshold;
58+
5659
@override
5760
set bufferedAmountLowThreshold(int? bufferedAmountLowThreshold) {
5861
_jsDc.bufferedAmountLowThreshold = bufferedAmountLowThreshold ?? 0;

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_webrtc
22
description: Use the dart/js library to re-wrap the webrtc js interface of the browser, to adapted common browsers.
3-
version: 1.5.3
3+
version: 1.5.3+hotfix.1
44
homepage: https://github.com/flutter-webrtc/dart-webrtc
55

66
environment:

0 commit comments

Comments
 (0)