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) {
|
protected void onPostExecute(List<LocalIndexInfo> result) {
|
||||||
this.result = result;
|
this.result = result;
|
||||||
listAdapter.sortData();
|
listAdapter.sortData();
|
||||||
|
if (getDownloadActivity() != null){
|
||||||
getDownloadActivity().setSupportProgressBarIndeterminateVisibility(false);
|
getDownloadActivity().setSupportProgressBarIndeterminateVisibility(false);
|
||||||
getDownloadActivity().setLocalIndexInfos(result);
|
getDownloadActivity().setLocalIndexInfos(result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<LocalIndexInfo> getResult() {
|
public List<LocalIndexInfo> getResult() {
|
||||||
|
|
Loading…
Reference in a new issue