Fixed Conflict in CHANGELOG.md

This commit is contained in:
Nicolas Gonzalez
2018-11-18 14:12:01 -06:00
7 changed files with 25 additions and 1 deletions

View File

@@ -52,6 +52,8 @@ export default class Video extends Component {
}
seek = (time, tolerance = 100) => {
if (isNaN(time)) throw new Error('Specified time is not a number');
if (Platform.OS === 'ios') {
this.setNativeProps({
seek: {
@@ -377,6 +379,7 @@ Video.propTypes = {
controls: PropTypes.bool,
audioOnly: PropTypes.bool,
currentTime: PropTypes.number,
fullscreenAutorotate: PropTypes.bool,
fullscreenOrientation: PropTypes.oneOf(['all','landscape','portrait']),
progressUpdateInterval: PropTypes.number,
useTextureView: PropTypes.bool,