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
bugfix/46-adjust-now-playing-top-margin
Ryan Harg 2021-09-03 09:35:56 +00:00
commit 2706dcaa8e
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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

Wyświetl plik

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