Skip to content

Commit

Permalink
fixing non-version override bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jchau207 committed May 14, 2020
1 parent 05675d3 commit cef20ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class SecureStringEncrypter(context: Context, private val namespace: String) {
value
)
VERSION_AES_KEY_STORE_RSA -> encryptStringUsingAesThenKeystoreRsa(value)
else -> encryptString(value, plainTextFallback)
else -> encryptString(value)
}
} catch (e: Exception) {
if (plainTextFallback) {
Expand Down

0 comments on commit cef20ae

Please sign in to comment.