Fix World for reports/subscription
This commit is contained in:
parent
545d514f10
commit
a86e14e5d1
1 changed files with 5 additions and 1 deletions
|
@ -143,7 +143,11 @@ public class CountrySelectionFragment extends BaseOsmAndDialogFragment {
|
|||
});
|
||||
for (WorldRegion group : groups) {
|
||||
String name = getHumanReadableName(group);
|
||||
countryItems.add(new CountryItem(name, group.getRegionDownloadName()));
|
||||
if (group == root) {
|
||||
countryItems.add(new CountryItem(name, ""));
|
||||
} else {
|
||||
countryItems.add(new CountryItem(name, group.getRegionDownloadName()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue