Kaynağa Gözat

check if hub is initialized.

Darien Raymond 8 yıl önce
ebeveyn
işleme
05626ca0fe
1 değiştirilmiş dosya ile 4 ekleme ve 2 silme
  1. 4 2
      app/proxyman/inbound/worker.go

+ 4 - 2
app/proxyman/inbound/worker.go

@@ -245,8 +245,10 @@ func (w *udpWorker) Start() error {
 }
 
 func (w *udpWorker) Close() {
-	w.hub.Close()
-	w.cancel()
+	if w.hub != nil {
+		w.hub.Close()
+		w.cancel()
+	}
 }
 
 func (w *udpWorker) monitor() {