mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
fix: Empty save parameter
This commit is contained in:
@@ -395,13 +395,14 @@ class KeeAutofillService : AutofillService() {
|
||||
},
|
||||
username = parseResult.usernameValue?.textValue?.toString(),
|
||||
password = parseResult.passwordValue?.textValue?.toString(),
|
||||
creditCard =
|
||||
creditCard = parseResult.creditCardNumber?.let { cardNumber ->
|
||||
CreditCard(
|
||||
parseResult.creditCardHolder,
|
||||
parseResult.creditCardNumber,
|
||||
cardNumber,
|
||||
expiration,
|
||||
parseResult.cardVerificationValue
|
||||
)
|
||||
}
|
||||
)
|
||||
|
||||
// TODO Callback in each activity #765
|
||||
|
||||
Reference in New Issue
Block a user