diff --git a/src/org/torproject/android/Orbot.java b/src/org/torproject/android/Orbot.java index 1848f9b5..32726d3a 100644 --- a/src/org/torproject/android/Orbot.java +++ b/src/org/torproject/android/Orbot.java @@ -862,13 +862,8 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic int newTorStatus = -1; try { - if (mTorServiceMsg != null && mTorServiceMsg.length()>0) - { - //if the serivce is bound, query it for the curren status value (int) - if (mService != null) - return new Integer(mService.getStatus()); - - } + if (mService != null) + return new Integer(mService.getStatus()); } catch (Exception e)