mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
Close #21702: Update host name check in add login
Co-Authored-By: joaopmatos <89925580+joaopmatos@users.noreply.github.com>
This commit is contained in:
parent
75a148b882
commit
f8f8b4f813
@ -9,11 +9,11 @@ import android.os.Bundle
|
||||
import android.text.Editable
|
||||
import android.text.InputType
|
||||
import android.text.TextWatcher
|
||||
import android.util.Patterns
|
||||
import android.view.Menu
|
||||
import android.view.MenuInflater
|
||||
import android.view.MenuItem
|
||||
import android.view.View
|
||||
import android.webkit.URLUtil
|
||||
import androidx.core.content.ContextCompat
|
||||
import androidx.core.view.isVisible
|
||||
import androidx.fragment.app.Fragment
|
||||
@ -47,7 +47,7 @@ class AddLoginFragment : Fragment(R.layout.fragment_add_login) {
|
||||
|
||||
private var duplicateLogin: SavedLogin? = null
|
||||
|
||||
private var validPassword = true
|
||||
private var validPassword = false
|
||||
private var validUsername = true
|
||||
private var validHostname = false
|
||||
private var usernameChanged = false
|
||||
@ -158,7 +158,7 @@ class AddLoginFragment : Fragment(R.layout.fragment_add_login) {
|
||||
setHostnameError()
|
||||
binding.clearHostnameTextButton.isEnabled = false
|
||||
}
|
||||
!URLUtil.isHttpUrl(hostnameText) && !URLUtil.isHttpsUrl(hostnameText) -> {
|
||||
!Patterns.WEB_URL.matcher(hostnameText).matches() -> {
|
||||
setHostnameError()
|
||||
binding.clearHostnameTextButton.isEnabled = true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user