forked from organicmaps/organicmaps
Fix url parameter for tile to pass in download manager.
This commit is contained in:
parent
4c8cb05e47
commit
635df63e91
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ namespace storage
|
|||
CancelDownloading(string const & baseUrl) : m_baseUrl(baseUrl) {}
|
||||
void operator()(TTile const & tile)
|
||||
{
|
||||
GetDownloadManager().CancelDownload((m_baseUrl + tile.first).c_str());
|
||||
GetDownloadManager().CancelDownload((m_baseUrl + UrlEncode(tile.first)).c_str());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue