Fix crash rtl

This commit is contained in:
Victor Shcherb 2020-09-09 11:23:40 +02:00
parent b1db209a96
commit aed5ab7140

View file

@ -1491,7 +1491,9 @@ public class QuickSearchDialogFragment extends DialogFragment implements OsmAndC
limit--; limit--;
} }
} }
addressSearchFragment.updateListAdapter(rows, false); if (addressSearchFragment != null) {
addressSearchFragment.updateListAdapter(rows, false);
}
} }
public void reloadHistory() { public void reloadHistory() {