mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-21 12:08:29 +00:00
Fixed country picker in assistant not working for first item
This commit is contained in:
parent
ff76549e7b
commit
5f58c1d49d
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ class CountryPickerFragment(private val listener: CountryPickedListener) : Dialo
|
||||||
binding.countryList.adapter = adapter
|
binding.countryList.adapter = adapter
|
||||||
|
|
||||||
binding.countryList.setOnItemClickListener { _, _, position, _ ->
|
binding.countryList.setOnItemClickListener { _, _, position, _ ->
|
||||||
if (position > 0 && position < adapter.count) {
|
if (position >= 0 && position < adapter.count) {
|
||||||
val dialPlan = adapter.getItem(position)
|
val dialPlan = adapter.getItem(position)
|
||||||
listener.onCountryClicked(dialPlan)
|
listener.onCountryClicked(dialPlan)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue