mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
correct separator for android
This commit is contained in:
2
FS.cpp
2
FS.cpp
@@ -70,7 +70,7 @@ namespace fs {
|
|||||||
if (!ext) ext = "/sdcard";
|
if (!ext) ext = "/sdcard";
|
||||||
if (boost::filesystem::exists(ext))
|
if (boost::filesystem::exists(ext))
|
||||||
{
|
{
|
||||||
dataDir = ext + appName;
|
dataDir = std::string (ext) + "/" + appName;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// otherwise use /data/files
|
// otherwise use /data/files
|
||||||
|
|||||||
Reference in New Issue
Block a user