make sure the unbind intent is not null
This commit is contained in:
parent
b8140191ef
commit
fd5128170a
|
@ -186,7 +186,8 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
|||
@Override
|
||||
public boolean onUnbind(Intent intent) {
|
||||
|
||||
logNotice( "onUnbind Called: " + intent.getAction());
|
||||
if (intent != null)
|
||||
logNotice( "onUnbind Called: " + intent.getAction());
|
||||
|
||||
return super.onUnbind(intent);
|
||||
|
||||
|
|
Loading…
Reference in New Issue