Client certificate works with redirects

This commit is contained in:
Corewala 2022-05-22 10:55:52 -04:00
parent 04e8cfc2c7
commit da37d8d684
1 changed files with 2 additions and 2 deletions

View File

@ -460,7 +460,7 @@ class GemActivity : AppCompatActivity() {
null null
) )
} }
gemRequest(state.uri.toString()) gemRequest(state.uri.toString(), true)
} }
} }
.setNegativeButton(getString(R.string.cancel).toUpperCase()) { _, _ -> } .setNegativeButton(getString(R.string.cancel).toUpperCase()) { _, _ -> }
@ -586,7 +586,7 @@ class GemActivity : AppCompatActivity() {
) )
certPassword = biometricManager.decryptData(ciphertext, result.cryptoObject?.cipher!!) certPassword = biometricManager.decryptData(ciphertext, result.cryptoObject?.cipher!!)
gemRequest(address) gemRequest(address, true)
} }
} }