No help in Kotlin wtfff
All checks were successful
/ mirror (push) Successful in 4s

This commit is contained in:
stcb 2025-02-03 10:51:07 +02:00
parent 97ce022436
commit d754ba5935

View File

@ -73,7 +73,7 @@ class KeystoreHelper(private val call: MethodCall, private val result: MethodCha
try {
val keyStore = KeyStore.getInstance(ANDROID_KEYSTORE).apply { load(null) }
val privateKey = keyStore.getKey(alias, null) ?: run {
val privateKey = keyStore.getKey(alias, null) as? PrivateKey ?: run {
result.error("KEY_NOT_FOUND", "Private key not found for alias \"$alias\".", null)
return
}