#88: Fix hostname scheme prefix handling

bugfix/46-adjust-now-playing-top-margin
Ryan Harg 2021-09-03 11:12:23 +02:00
rodzic 4e0279a75a
commit fec95a7332
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 89106F3A84E6958C
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)