Fix travel cards when no book
This commit is contained in:
parent
8098f5d92c
commit
1b30f1f428
1 changed files with 11 additions and 12 deletions
|
@ -175,10 +175,9 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
|||
if (!Version.isPaidVersion(app) && !OpenBetaTravelCard.isClosed()) {
|
||||
items.add(new OpenBetaTravelCard(activity, nightMode));
|
||||
}
|
||||
if (app.getTravelHelper().isAnyTravelBookPresent()) {
|
||||
items.add(new HeaderTravelCard(app, nightMode, getString(R.string.popular_destinations)));
|
||||
|
||||
List<TravelArticle> popularArticles = app.getTravelHelper().getPopularArticles();
|
||||
if (!popularArticles.isEmpty()) {
|
||||
items.add(new HeaderTravelCard(app, nightMode, getString(R.string.popular_destinations)));
|
||||
for (TravelArticle article : popularArticles) {
|
||||
if (article instanceof TravelGpx) {
|
||||
items.add(new TravelGpxCard(app, nightMode, (TravelGpx) article, getActivity()));
|
||||
|
@ -186,6 +185,7 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
|||
items.add(new ArticleTravelCard(app, nightMode, article, activity.getSupportFragmentManager()));
|
||||
}
|
||||
}
|
||||
}
|
||||
items.add(new StartEditingTravelCard(activity, nightMode));
|
||||
adapter.setItems(items);
|
||||
final DownloadIndexesThread downloadThread = app.getDownloadThread();
|
||||
|
@ -197,7 +197,6 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void removeRedundantCards() {
|
||||
if (mainIndexItem != null && mainIndexItem.isDownloaded() && !mainIndexItem.isOutdated()) {
|
||||
|
|
Loading…
Reference in a new issue