Fixed NPE in localIndexFragment in onPostExecute

This commit is contained in:
Denis 2014-11-10 11:29:44 +02:00
parent 696b817863
commit 79cc69df46

View file

@ -268,10 +268,11 @@ public class LocalIndexesFragment extends OsmandExpandableListFragment {
protected void onPostExecute(List<LocalIndexInfo> result) {
this.result = result;
listAdapter.sortData();
if (getDownloadActivity() != null){
getDownloadActivity().setSupportProgressBarIndeterminateVisibility(false);
getDownloadActivity().setLocalIndexInfos(result);
}
}
public List<LocalIndexInfo> getResult() {
return result;