[by familom]: Temporary fix of desktop version downloader (support backslashes in filepath).

This commit is contained in:
vng 2011-08-14 18:08:38 +03:00 committed by Alex Zolotarev
parent a4ed5923ae
commit 4e8e880527

View file

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