don't stop Tor when service is destroyed()

This commit is contained in:
Nathan Freitas 2014-08-07 12:11:53 -04:00
parent 113b18900d
commit 1801ec179f
1 changed files with 2 additions and 4 deletions

View File

@ -393,15 +393,13 @@ public class TorService extends Service implements TorServiceConstants, TorConst
} }
public void onDestroy () public void onDestroy ()
{ {
super.onDestroy(); super.onDestroy();
logNotice("TorService is being destroyed... shutting down!"); logNotice("TorService is being destroyed... shutting down!");
stopTor(); //stopTor();
unregisterReceiver(mNetworkStateReceiver); unregisterReceiver(mNetworkStateReceiver);
@ -1827,7 +1825,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
mBinder.saveConfiguration(); mBinder.saveConfiguration();
} }
if (currentStatus == STATUS_ON) if (currentStatus != STATUS_OFF)
{ {
if (!mConnectivity) if (!mConnectivity)
{ {