forked from organicmaps/organicmaps
[by familom]: Temporary fix of desktop version downloader (support backslashes in filepath).
This commit is contained in:
parent
a4ed5923ae
commit
4e8e880527
1 changed files with 3 additions and 1 deletions
|
@ -353,7 +353,9 @@ namespace storage
|
|||
|
||||
// get file descriptor
|
||||
string file = result.m_file;
|
||||
string::size_type const i = file.find_last_of('/');
|
||||
|
||||
// FIXME
|
||||
string::size_type const i = file.find_last_of("/\\");
|
||||
if (i != string::npos)
|
||||
file = file.substr(i+1);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue