Fixing a potential NullPointerException at the NetworkService

This commit is contained in:
Nelson R. Perez 2018-09-21 13:29:47 -05:00
parent a28775d464
commit 35570cb4a6

View file

@ -215,6 +215,7 @@ public class NetworkService extends Service {
if(mWebSocket != null) if(mWebSocket != null)
mWebSocket.close(NORMAL_CLOSURE_STATUS, null); mWebSocket.close(NORMAL_CLOSURE_STATUS, null);
if(nodeLatencyVerifier != null)
nodeLatencyVerifier.stop(); nodeLatencyVerifier.stop();
} }