fixed check for tor binary and install process

This commit is contained in:
n8fr8 2012-06-28 22:02:09 -04:00
parent 3de5d66440
commit 2d4ebe27ee
1 changed files with 22 additions and 18 deletions

View File

@ -205,25 +205,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
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;
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);