Fix for "java.lang.IllegalArgumentException: unexpected url" (#313)

<!-- INSTRUCTION: Keep the line below to notify all core developers about this new PR -->
@RocketChat/ReactNative

<!-- INSTRUCTION: Inform the issue number that this PR closes, or remove the line below -->
User was able to add an invalid instance of Rocket.Chat by pressing submit button instead of "Connect" button.

<!-- INSTRUCTION: Tell us more about your PR with screen shots if you can -->
This commit is contained in:
Diego Mello 2018-05-30 13:51:30 -03:00 committed by Guilherme Gazzo
parent 3b278f47ce
commit ed8ce28708
1 changed files with 4 additions and 2 deletions

View File

@ -48,8 +48,10 @@ export default class NewServerView extends LoggedView {
} }
submit = () => { submit = () => {
Keyboard.dismiss(); if (this.props.validInstance) {
this.props.addServer(this.completeUrl(this.state.text)); Keyboard.dismiss();
this.props.addServer(this.completeUrl(this.state.text));
}
} }
completeUrl = (url) => { completeUrl = (url) => {