mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 00:59:08 +01:00
correct separator for android
This commit is contained in:
parent
b526718846
commit
3d4e2a275c
1 changed files with 1 additions and 1 deletions
2
FS.cpp
2
FS.cpp
|
@ -70,7 +70,7 @@ namespace fs {
|
|||
if (!ext) ext = "/sdcard";
|
||||
if (boost::filesystem::exists(ext))
|
||||
{
|
||||
dataDir = ext + appName;
|
||||
dataDir = std::string (ext) + "/" + appName;
|
||||
return;
|
||||
}
|
||||
// otherwise use /data/files
|
||||
|
|
Loading…
Add table
Reference in a new issue