[Old map downloader] Fix Fix migration if there are no loaded MWM.

This commit is contained in:
Sergey Yershov 2016-01-26 13:33:40 +03:00
parent cd82df9a46
commit 98d31961ee

View file

@ -529,12 +529,12 @@ void Framework::RegisterAllMaps()
m_storage.RegisterAllLocalMaps();
// Fast migrate if possible.
// Fast migrate in case there are no downloaded MWM.
if (platform::migrate::NeedMigrate())
{
bool disableFastMigrate = false;
Settings::Get("DisableFastMigrate", disableFastMigrate);
if(!disableFastMigrate && m_storage.HaveDownloadedCountries())
if(!disableFastMigrate && !m_storage.HaveDownloadedCountries())
{
Migrate();
return;