File tree 4 files changed +12
-4
lines changed
4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
--------------------------------------------
4
+ [ 0.6.5] - 2021.06.18
5
+
6
+ * [ Android] Falling back to the first available camera fix #580
7
+ * [ Android] Fix application exit null-pointer exception (#582 )
8
+ * [ Dart] Add label getter to DataChannel Interface (#585 )
9
+ * [ Dart] Fix exception raised at RTCPeerConnection.removeTrack and RTCRtpSender.setParameters (#588 )
10
+ * [ Dart] Fix: null check (#595 )
11
+ * [ Dart] Fix: null check for RTCRtpTransceiverNative.fromMap
12
+
4
13
[ 0.6.4] - 2021.05.02
5
14
6
15
* [ Android] Fix getting screen capture on Huawei only successful in the first time. (#523 )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class MediaStreamNative extends MediaStream {
21
21
22
22
void setMediaTracks (List <dynamic > audioTracks, List <dynamic > videoTracks) {
23
23
_audioTracks.clear ();
24
-
24
+
25
25
if (audioTracks != null ) {
26
26
audioTracks.forEach ((track) {
27
27
_audioTracks.add (MediaStreamTrackNative (
Original file line number Diff line number Diff line change @@ -91,8 +91,7 @@ class RTCVideoRendererWeb extends VideoRenderer {
91
91
92
92
@override
93
93
set srcObject (MediaStream ? stream) {
94
-
95
- if (stream == null ) {
94
+ if (stream == null ) {
96
95
findHtmlView ()? .srcObject = null ;
97
96
_audioElement? .srcObject = _audioStream;
98
97
return ;
Original file line number Diff line number Diff line change 1
1
name : flutter_webrtc
2
2
description : Flutter WebRTC plugin for iOS/Android/Destkop/Web, based on GoogleWebRTC.
3
- version : 0.6.4
3
+ version : 0.6.5
4
4
homepage : https://github.com/cloudwebrtc/flutter-webrtc
5
5
environment :
6
6
sdk : ' >=2.12.0 <3.0.0'
You can’t perform that action at this time.
0 commit comments