Fixed case insensitive name compare bug

This commit is contained in:
dankito 2020-06-04 11:02:01 +02:00
parent 069464510c
commit 609d25417a
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ data class Remittee(
if (this === other) return true
if (other !is Remittee) return false
if (name.equals(other.name, true)) return false
if (name.equals(other.name, true) == false) return false
if (iban != other.iban) return false
if (bic != other.bic) return false