fixed check for tor binary and install process
This commit is contained in:
parent
3de5d66440
commit
2d4ebe27ee
|
@ -205,25 +205,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
initTorPaths();
|
initTorPaths();
|
||||||
|
|
||||||
//if Tor was deleted for some reason, do this again!
|
|
||||||
if (!fileTor.exists())
|
|
||||||
{
|
|
||||||
new Thread ()
|
|
||||||
{
|
|
||||||
public void run ()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
checkTorBinaries (false);
|
|
||||||
} catch (Exception e) {
|
|
||||||
|
|
||||||
logNotice("unable to find tor binaries: " + e.getMessage());
|
|
||||||
showToolbarNotification(getString(R.string.error_installing_binares), ERROR_NOTIFY_ID, R.drawable.tornotificationerr, -1);
|
|
||||||
|
|
||||||
Log.e(TAG, "error checking tor binaries", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}.start();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1157,6 +1139,28 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
_torInstance = this;
|
_torInstance = this;
|
||||||
initTorPaths();
|
initTorPaths();
|
||||||
|
|
||||||
|
//android.os.Debug.waitForDebugger();
|
||||||
|
|
||||||
|
//if Tor was deleted for some reason, do this again!
|
||||||
|
if (!fileTor.exists())
|
||||||
|
{
|
||||||
|
new Thread ()
|
||||||
|
{
|
||||||
|
public void run ()
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
checkTorBinaries (false);
|
||||||
|
} catch (Exception e) {
|
||||||
|
|
||||||
|
logNotice("unable to find tor binaries: " + e.getMessage());
|
||||||
|
showToolbarNotification(getString(R.string.error_installing_binares), ERROR_NOTIFY_ID, R.drawable.tornotificationerr, -1);
|
||||||
|
|
||||||
|
Log.e(TAG, "error checking tor binaries", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue