Skip to content

Commit

Permalink
Fixes signalapp#13854 - Showing Null String on Empty search
Browse files Browse the repository at this point in the history
  • Loading branch information
Sagar0-0 committed Jan 5, 2025
1 parent ba79a3e commit c5a8d44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class ContactSelectionListAdapter(
private val emptyText: TextView = itemView.findViewById(R.id.search_no_results)

override fun bind(model: EmptyModel) {
emptyText.text = context.getString(R.string.SearchFragment_no_results, model.empty.query)
emptyText.text = context.getString(R.string.SearchFragment_no_results, model.empty.query ?: "")
}
}

Expand Down

0 comments on commit c5a8d44

Please sign in to comment.