diff --git a/OsmAnd/src/net/osmand/plus/firstusage/FirstUsageWizardFragment.java b/OsmAnd/src/net/osmand/plus/firstusage/FirstUsageWizardFragment.java index 8cc776ed6d..4c535a9aac 100644 --- a/OsmAnd/src/net/osmand/plus/firstusage/FirstUsageWizardFragment.java +++ b/OsmAnd/src/net/osmand/plus/firstusage/FirstUsageWizardFragment.java @@ -474,6 +474,9 @@ public class FirstUsageWizardFragment extends BaseOsmAndFragment implements OsmA } private void updateDownloadedItem() { + if (mapIndexItem == null) { + return; + } final View firstRowLayout = view.findViewById(R.id.map_downloading_layout); final View progressLayout = view.findViewById(R.id.map_download_progress_layout); final ImageButton redownloadButton = (ImageButton) view.findViewById(R.id.map_redownload_button);