Fixed that new lastRetrievedTransactionsTimestamp parameter hasn't been passed

This commit is contained in:
dankito 2020-05-21 00:26:45 +02:00
parent b89414b1f1
commit 56308687fb
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ open class fints4kModelMapper {
open fun mapBankAccount(account: Account, accountData: AccountData): BankAccount { open fun mapBankAccount(account: Account, accountData: AccountData): BankAccount {
return BankAccount(account, accountData.accountIdentifier, accountData.accountHolderName, accountData.iban, return BankAccount(account, accountData.accountIdentifier, accountData.accountHolderName, accountData.iban,
accountData.subAccountAttribute, BigDecimal.ZERO, accountData.currency ?: "EUR", accountData.subAccountAttribute, BigDecimal.ZERO, accountData.currency ?: "EUR",
mapBankAccountType(accountData.accountType), accountData.supportsFeature(AccountFeature.RetrieveAccountTransactions), mapBankAccountType(accountData.accountType), null, accountData.supportsFeature(AccountFeature.RetrieveAccountTransactions),
accountData.supportsFeature(AccountFeature.RetrieveBalance), accountData.supportsFeature(AccountFeature.TransferMoney), accountData.supportsFeature(AccountFeature.RetrieveBalance), accountData.supportsFeature(AccountFeature.TransferMoney),
accountData.supportsFeature(AccountFeature.InstantPayment)) accountData.supportsFeature(AccountFeature.InstantPayment))
} }