forked from organicmaps/organicmaps
[Old map downloader] Fix Fix migration if there are no loaded MWM.
This commit is contained in:
parent
cd82df9a46
commit
98d31961ee
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue