mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
correct separator for android
This commit is contained in:
parent
b526718846
commit
3d4e2a275c
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
|
||||||
|
|
Loading…
Reference in a new issue