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:
parent
3b278f47ce
commit
ed8ce28708
|
@ -48,8 +48,10 @@ export default class NewServerView extends LoggedView {
|
|||
}
|
||||
|
||||
submit = () => {
|
||||
Keyboard.dismiss();
|
||||
this.props.addServer(this.completeUrl(this.state.text));
|
||||
if (this.props.validInstance) {
|
||||
Keyboard.dismiss();
|
||||
this.props.addServer(this.completeUrl(this.state.text));
|
||||
}
|
||||
}
|
||||
|
||||
completeUrl = (url) => {
|
||||
|
|
Loading…
Reference in New Issue