8000 Merge pull request #76 from LinusU/patch-1 · linuxerwang/flutter-webrtc@4cbd912 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4cbd912

Browse files
authored
Merge pull request flutter-webrtc#76 from LinusU/patch-1
Fix self property access in video renderer
2 parents d1282a1 + e630506 commit 4cbd912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/Classes/FlutterRTCVideoRenderer.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ - (void)setVideoTrack:(RTCVideoTrack *)videoTrack {
6767
RTCVideoTrack *oldValue = self.videoTrack;
6868

6969
if (oldValue != videoTrack) {
70-
self._isFirstFrameRendered = false;
70+
_isFirstFrameRendered = false;
7171
if (oldValue) {
7272
[oldValue removeRenderer:self];
7373
}

0 commit comments

Comments
 (0)
0