[ReactNative] Fix Android back btn regression from D2010265

This commit is contained in:
Eric Vicenti
2015-04-22 10:09:02 -07:00
parent eafe93096c
commit 7aa413d619

View File

@@ -459,7 +459,7 @@ var Navigator = React.createClass({
},
_handleAndroidBackPress: function() {
var didPop = this.pop();
var didPop = this.requestPop();
if (!didPop) {
BackAndroid.exitApp();
}