forked from organicmaps/organicmaps
Routing don't asks to download empty country names.
This commit is contained in:
parent
518be05fa8
commit
5050e098f7
1 changed files with 3 additions and 2 deletions
|
@ -37,8 +37,9 @@ void OnlineAbsentCountriesFetcher::GetAbsentCountries(vector<string> & countries
|
|||
m_fetcherThread->Join();
|
||||
for (auto const & point : m_fetcherThread->GetRoutineAs<OnlineCrossFetcher>()->GetMwmPoints())
|
||||
{
|
||||
string name = m_countryFileFn(point);
|
||||
if (m_countryLocalFileFn(name))
|
||||
string const name = m_countryFileFn(point);
|
||||
ASSERT(!name.empty(), ());
|
||||
if (name.empty() || m_countryLocalFileFn(name))
|
||||
continue;
|
||||
|
||||
LOG(LINFO, ("Needs: ", name));
|
||||
|
|
Loading…
Add table
Reference in a new issue