Make 422 status when titan failed to add user to guild

This commit is contained in:
Jeremy Zhang
2017-09-20 21:20:06 +00:00
parent ff4d6a405a
commit f6b354f10d
2 changed files with 5 additions and 1 deletions

View File

@ -969,6 +969,8 @@
Materialize.toast('Authentication error! You have been banned.', 10000);
} else if (data.status == 406) {
Materialize.toast('Illegal username provided! Only alphanumeric, spaces, dashes, and underscores allowed in usernames.', 10000);
} else if (data.status == 422) {
Materialize.toast("Attempting to add you into the server has failed. Either you are banned, reached 100 servers in Discord, or something else bad has happened.", 10000);
}
unlock_login_fields();
setVisitorMode(true);