Routing don't asks to download empty country names.

This commit is contained in:
Lev Dragunov 2016-03-17 11:19:11 +03:00 committed by Sergey Yershov
parent 518be05fa8
commit 5050e098f7

View file

@ -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));