forked from organicmaps/organicmaps
Fixed missed data extension in downloader
This commit is contained in:
parent
90272e4bb3
commit
1e23c6a072
1 changed files with 7 additions and 1 deletions
|
@ -134,7 +134,13 @@ namespace storage
|
|||
}
|
||||
|
||||
if (found != last && !(line < found->first))
|
||||
currentCountry->AddTile(*found);
|
||||
{
|
||||
// fix extension for data files
|
||||
if (found->first.find_last_of(DATA_FILE_EXTENSION) == string::npos)
|
||||
currentCountry->AddTile(TTile(found->first + DATA_FILE_EXTENSION, found->second));
|
||||
else
|
||||
currentCountry->AddTile(*found);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 1: // country group
|
||||
|
|
Loading…
Add table
Reference in a new issue