-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Closed
Labels
Ran CommandsOne of our bots successfully processed a command.One of our bots successfully processed a command.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.
Description
var SERVER_SIGNUP_URL = 'https://192.168.0.80/Registration/Registration.php';
fetch(SERVER_SIGNUP_URL + '?username=' + this.state.username + '&password=' + this.state.password)
.then((response) => response.json())
.then((responseData) => {
var id = responseData.id;
if (id === -1) {
this.hideProgressBar();
showMessage("Something is bad", "This username is already taken");
}
else {
this.props.navigator.push({
name: 'contacts',
password: this.state.password,
id: id,
username: this.state.username
});
}
})
.done();
Metadata
Metadata
Assignees
Labels
Ran CommandsOne of our bots successfully processed a command.One of our bots successfully processed a command.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.