Merge branch 'bugfix/88-fix-hostname-prefix-handling' into 'develop'

#88: Fix hostname scheme prefix handling

Closes #88

See merge request funkwhale/funkwhale-android!87
This commit is contained in:
Ryan Harg 2021-09-03 09:35:56 +00:00
commit 2706dcaa8e
2 changed files with 2 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class LoginActivity : AppCompatActivity() {
if (hostname.isEmpty()) {
return getString(R.string.login_error_hostname)
}
if (!cleartext && hostname.startsWith("http")) {
if (!cleartext && hostname.startsWith("http://")) {
return getString(R.string.login_error_hostname_https)
}
return null

View File

@ -0,0 +1 @@
Fix handling of hostname 'https://' scheme prefix (#88)