Skip to content

Commit

Permalink
Set country info when selected at phone login
Browse files Browse the repository at this point in the history
fixing issue firebase#2005
  • Loading branch information
underscore200 authored Jan 3, 2022
1 parent 980d0cc commit 5b4dea9
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public CountryListSpinner(Context context, AttributeSet attrs, int defStyle) {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
CountryInfo info = mCountryListAdapter.getItem(position);
if (info != null) {
mSelectedCountryInfo = info;
setText(info.toShortString());
}

Expand Down

0 comments on commit 5b4dea9

Please sign in to comment.