Fixed sorting booked transactions search result

This commit is contained in:
dankl 2019-10-27 22:04:39 +01:00 committed by dankito
parent 717e8f98f3
commit 67d7515b57
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ open class MainWindowPresenter(callback: FinTsClientCallback) {
it.otherPartyName?.toLowerCase()?.contains(queryLowercase) == true
|| it.usage.toLowerCase().contains(queryLowercase)
|| it.bookingText?.toLowerCase()?.contains(queryLowercase) == true
}
}.sortedByDescending { it.bookingDate }
}