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

main
Vavassor 8 years ago
parent b4e8fe9a78
commit 2df687e22e
  1. 2
      app/src/main/java/com/keylesspalace/tusky/LoginActivity.java

@ -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);
}

Loading…
Cancel
Save