diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index f96b2d93ae..342c414cdb 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -390,7 +390,7 @@ const ScrollView = React.createClass({ _handleScroll: function(e: Object) { if (__DEV__) { - if (this.props.onScroll && !this.props.scrollEventThrottle && Platform.OS === 'ios') { + if (this.props.onScroll && this.props.scrollEventThrottle == null && Platform.OS === 'ios') { console.log( // eslint-disable-line no-console-disallow 'You specified `onScroll` on a but not ' + '`scrollEventThrottle`. You will only receive one event. ' +