Fixed that userCancelledAction wasn't mapped

This commit is contained in:
dankito 2020-04-30 16:07:33 +02:00
parent 2aad114d55
commit a991164d55
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ open class fints4javaModelMapper {
open fun mapResponse(response: FinTsClientResponse): BankingClientResponse { open fun mapResponse(response: FinTsClientResponse): BankingClientResponse {
return BankingClientResponse(response.isSuccessful, mapErrorToShowToUser(response), response.exception) return BankingClientResponse(response.isSuccessful, mapErrorToShowToUser(response), response.exception, response.userCancelledAction)
} }
open fun mapResponse(account: Account, response: net.dankito.fints.response.client.AddAccountResponse): AddAccountResponse { open fun mapResponse(account: Account, response: net.dankito.fints.response.client.AddAccountResponse): AddAccountResponse {