File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ class WebRTCManagerIpml extends WebRTCManager {
519
519
await _localCameraStream! .addTrack (audioTrack);
520
520
await _replaceAudioTrack (audioTrack);
521
521
522
- await _mParticipant? .setSrcObject (_localCameraStream! );
522
+ _mParticipant? .setSrcObject (_localCameraStream! );
523
523
}
524
524
525
525
_notify (CallbackEvents .shouldBeUpdateState);
@@ -550,7 +550,7 @@ class WebRTCManagerIpml extends WebRTCManager {
550
550
await _localCameraStream! .addTrack (videoTrack);
551
551
await _replaceVideoTrack (videoTrack);
552
552
553
- await _mParticipant? .setSrcObject (_localCameraStream! );
553
+ _mParticipant? .setSrcObject (_localCameraStream! );
554
554
}
555
555
}
556
556
Original file line number Diff line number Diff line change 1
1
import 'package:flutter/foundation.dart' ;
2
+
2
3
import 'package:freezed_annotation/freezed_annotation.dart' ;
3
4
4
5
import 'package:waterbus_sdk/types/externals/enums/rtc_video_codec.dart' ;
You can’t perform that action at this time.
0 commit comments