Checking now equality of whole bank account instead of only its technical id

This commit is contained in:
dankito 2020-09-01 15:14:47 +02:00
parent 76a2cb0642
commit 9dc6c0c5c0
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ open class AccountTransaction(
if (this === other) return true
if (other !is AccountTransaction) return false
if (bankAccount.technicalId != other.bankAccount.technicalId) return false
if (bankAccount != other.bankAccount) return false
if (amount != other.amount) return false
if (currency != other.currency) return false
if (unparsedUsage != other.unparsedUsage) return false