Skip to content

Commit d516169

Browse files
committed
update.
1 parent d6aabf7 commit d516169

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

33
--------------------------------------------
4+
[1.2.2+hotfix.1] - 2025-03-24
5+
6+
* rename getBufferAmount to getBufferedAmount.
7+
48
[1.2.2] - 2025-03-24
59

610
* add getBufferedAmount for RTCDataChannel.

lib/src/rtc_data_channel.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ abstract class RTCDataChannel {
8181
int? get bufferedAmount;
8282

8383
/// Get the buffered amount from native DC.
84-
Future<int> getBufferAmount() => throw UnimplementedError();
84+
Future<int> getBufferedAmount() => throw UnimplementedError();
8585

8686
/// Set threshold to trigger onBufferedAmountLow callback
8787
int? bufferedAmountLowThreshold;

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webrtc_interface
22
description: WebRTC Interface for Dart-Web/Flutter.
3-
version: 1.2.2
3+
version: 1.2.2+hotfix.1
44
homepage: https://flutter-webrtc.org
55

66
environment:

0 commit comments

Comments
 (0)