Skip to content

Commit

Permalink
resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
rlam20 committed Jul 2, 2024
1 parent a8315fc commit 33cf79b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ class ChatHistoryListAdapter(var context: Context, private var chatHistory: List
if (chat.conversations != null && chat.conversations?.isNotEmpty() == true) {
chat.conversations?.get(0)?.query?.contains(query, ignoreCase = true) == true
} else {
chat.title?.contains(query, ignoreCase = true) ==true
chat.title?.contains(query, ignoreCase = true) == true
}
}
notifyItemRangeChanged(0, filteredChatHistory.size)
}

Expand Down

0 comments on commit 33cf79b

Please sign in to comment.