We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ff6090 commit ddb5b4aCopy full SHA for ddb5b4a
src/main/scala/com/github/shadowsocks/BaseService.scala
@@ -75,7 +75,7 @@ trait BaseService extends Service {
75
76
if (isConnected && profile.kcp && kcptunProcess != null) {
77
restartHanlder.removeCallbacks(null)
78
- restartHanlder.postDelayed(() => kcptunProcess.restart(), 2000)
+ restartHanlder.postDelayed(() => if (kcptunProcess != null) kcptunProcess.restart(), 2000)
79
}
80
81
var networkReceiverRegistered: Boolean = _
0 commit comments