Fixes a validation error on login when instance names are entered with multiple @ symbols like @username@example.com.

This commit is contained in:
Vavassor 2017-05-30 16:57:30 -04:00
parent b4e8fe9a78
commit 2df687e22e
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ public class LoginActivity extends AppCompatActivity {
s = s.replaceFirst("http://", "");
s = s.replaceFirst("https://", "");
// If a username was included (e.g. username@example.com), just take what's after the '@'.
int at = s.indexOf('@');
int at = s.lastIndexOf('@');
if (at != -1) {
s = s.substring(at + 1);
}