Skip to content

Commit

Permalink
Resolve merge conflicts with micromata/develop 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jona Fleckenstein committed Aug 21, 2023
1 parent 2047b40 commit 2d9255f
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,6 @@ class BirthdayButlerService {
val foundUsers = mutableListOf<AddressDO>()
addressList.forEach { address ->
if (activeUsers.any { user ->
address.firstName?.trim().equals(user.firstname?.trim(), ignoreCase = true) &&
address.name?.trim().equals(user.lastname?.trim(), ignoreCase = true)
address.firstName?.trim()?.equals(user.firstname?.trim(), ignoreCase = true) == true &&
address.name?.trim()?.equals(user.lastname?.trim(), ignoreCase = true) == true
}) {
Expand Down

0 comments on commit 2d9255f

Please sign in to comment.