Fixed that amount has been compared with other

This commit is contained in:
dankito 2020-08-05 17:28:41 +02:00
parent 374818f748
commit 561114ee26
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ open class AccountTransaction(
if (other !is AccountTransaction) return false
if (bankAccount != other.bankAccount) return false
if (amount != other) return false // TODO: does this work?
if (amount != other.amount) return false
if (currency != other.currency) return false
if (unparsedUsage != other.unparsedUsage) return false
if (bookingDate != other.bookingDate) return false