Fixed NPE in localIndexFragment in onPostExecute
This commit is contained in:
parent
a77e6329a4
commit
bb695deaed
1 changed files with 4 additions and 3 deletions
|
@ -268,9 +268,10 @@ public class LocalIndexesFragment extends OsmandExpandableListFragment {
|
|||
protected void onPostExecute(List<LocalIndexInfo> result) {
|
||||
this.result = result;
|
||||
listAdapter.sortData();
|
||||
|
||||
getDownloadActivity().setSupportProgressBarIndeterminateVisibility(false);
|
||||
getDownloadActivity().setLocalIndexInfos(result);
|
||||
if (getDownloadActivity() != null){
|
||||
getDownloadActivity().setSupportProgressBarIndeterminateVisibility(false);
|
||||
getDownloadActivity().setLocalIndexInfos(result);
|
||||
}
|
||||
}
|
||||
|
||||
public List<LocalIndexInfo> getResult() {
|
||||
|
|
Loading…
Reference in a new issue