mirror of
https://github.com/Corewala/Buran
synced 2024-12-22 07:42:43 +00:00
Removed broken null check on http proxy
This commit is contained in:
parent
26093144dd
commit
f89f41ae14
1 changed files with 10 additions and 12 deletions
|
@ -919,9 +919,8 @@ class GemActivity : AppCompatActivity() {
|
|||
updateClientCertIcon()
|
||||
|
||||
if(address.startsWith("http://") or address.startsWith("https://")){
|
||||
val httpProxy = prefs.getString("http_proxy", null)
|
||||
val httpProxy = prefs.getString("http_proxy", null) ?: ""
|
||||
|
||||
if (httpProxy != null) {
|
||||
if(
|
||||
httpProxy.isNullOrEmpty()
|
||||
or !httpProxy.startsWith("gemini://")
|
||||
|
@ -933,7 +932,6 @@ class GemActivity : AppCompatActivity() {
|
|||
model.request(httpProxy, certPassword, address)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(getInternetStatus()){
|
||||
if(initialised){
|
||||
|
|
Loading…
Reference in a new issue