Fix url parameter for tile to pass in download manager.

This commit is contained in:
vng 2011-02-26 19:39:08 +02:00 committed by Alex Zolotarev
parent 4c8cb05e47
commit 635df63e91

View file

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