Fixing a potential NullPointerException at the NetworkService
This commit is contained in:
parent
a28775d464
commit
35570cb4a6
1 changed files with 2 additions and 1 deletions
|
@ -215,7 +215,8 @@ public class NetworkService extends Service {
|
||||||
if(mWebSocket != null)
|
if(mWebSocket != null)
|
||||||
mWebSocket.close(NORMAL_CLOSURE_STATUS, null);
|
mWebSocket.close(NORMAL_CLOSURE_STATUS, null);
|
||||||
|
|
||||||
nodeLatencyVerifier.stop();
|
if(nodeLatencyVerifier != null)
|
||||||
|
nodeLatencyVerifier.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
|
Loading…
Reference in a new issue