mirror of
https://github.com/tuskyapp/Tusky
synced 2025-01-03 12:29:30 +01:00
strip slashes from instance domain to avoid crash
This commit is contained in:
parent
4bdcc9667e
commit
145c6a8acb
@ -320,6 +320,10 @@ class LoginActivity : AppCompatActivity() {
|
||||
// Strip any schemes out.
|
||||
var s = domain.replaceFirst("http://", "")
|
||||
s = s.replaceFirst("https://", "")
|
||||
|
||||
//strip out any slashes that might have been added
|
||||
s = s.replace("/", "")
|
||||
|
||||
// If a username was included (e.g. username@example.com), just take what's after the '@'.
|
||||
val at = s.lastIndexOf('@')
|
||||
if (at != -1) {
|
||||
|
Loading…
Reference in New Issue
Block a user