We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a2f7bd + 9272678 commit f66ca32Copy full SHA for f66ca32
CHANGELOG.md
@@ -1,5 +1,8 @@
1
## Changelog
2
3
+### Version 5.0.2
4
+* Fix crash when RCTVideo's superclass doesn't observe the keyPath 'frame' (iOS) [#1720](https://github.com/react-native-community/react-native-video/pull/1720)
5
+
6
### Version 5.0.1
7
* Fix AndroidX Support bad merge
8
ios/Video/RCTVideo.m
@@ -712,8 +712,6 @@ - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(N
712
713
return;
714
}
715
- } else if ([super respondsToSelector:@selector(observeValueForKeyPath:ofObject:change:context:)]) {
716
- [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
717
718
719
0 commit comments