Explorar o código

fix bug for nil pointer (#2438)

yeer hai 3 meses
pai
achega
e1bc43da5f
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      xray/api.go

+ 4 - 0
xray/api.go

@@ -181,6 +181,10 @@ func (x *XrayAPI) GetTraffic(reset bool) ([]*Traffic, []*ClientTraffic, error) {
 	ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
 	defer cancel()
 
+	if x.StatsServiceClient == nil {
+		return nil, nil, common.NewError("xray StatusServiceClient is not initialized")
+	}
+
 	resp, err := (*x.StatsServiceClient).QueryStats(ctx, &statsService.QueryStatsRequest{Reset_: reset})
 	if err != nil {
 		logger.Debug("Failed to query Xray stats:", err)