fix android crash on server url (#400)

This commit is contained in:
enahum 2017-03-26 22:23:21 -03:00 committed by GitHub
parent 23fa46fad6
commit 0c1cad8a7f

View file

@ -100,7 +100,9 @@ export default class SelectServer extends PureComponent {
};
blur = () => {
this.textInput.refs.wrappedInstance.blur();
if (this.textInput) {
this.textInput.refs.wrappedInstance.blur();
}
};
render() {