1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-08 19:21:35 +00:00

Fixed broken code

This commit is contained in:
Felix Ableitner 2016-10-20 18:18:09 +09:00
parent 39e492e171
commit bf3fe50461

View file

@ -118,7 +118,7 @@ public class SyncthingRunnable implements Runnable {
// Set home directory to data folder for web GUI folder picker.
env.put("HOME", Environment.getExternalStorageDirectory().getAbsolutePath());
env.put("STTRACE", sp.getString("sttrace", ""));
env.put("STGUIASSETS", getExternalFilesDir(null).getAbsolutePath() + "/gui");
env.put("STGUIASSETS", mContext.getExternalFilesDir(null).getAbsolutePath() + "/gui");
env.put("STNORESTART", "1");
env.put("STNOUPGRADE", "1");
if (sp.getBoolean("use_tor", false)) {