Ben 1 年之前
父节点
当前提交
7913859f69
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      internal/server/server.go

+ 6 - 1
internal/server/server.go

@@ -231,12 +231,17 @@ func convert2DtoNode(node *model.Node, seq int) *dto.Node {
 		"VN": "Vietnam",        // 无
 	}
 
+	countryLabel := fmt.Sprintf("%s", countryLabels[node.CountryCode])
+	if node.CountryCode == "US" {
+		countryLabel = fmt.Sprintf("%s - %d", countryLabels[node.CountryCode], seq+1)
+	}
+
 	return &dto.Node{
 		Ip:           node.Ip,
 		CountryCode:  node.CountryCode,
 		CountryName:  node.CountryName,
 		City:         node.City,
-		CountryLabel: fmt.Sprintf("%s - %d", countryLabels[node.CountryCode], seq+1),
+		CountryLabel: countryLabel,
 		Icon:         icons[node.CountryCode],
 		SecretUrl:    fmt.Sprintf("http://v.starttransfernow.com/secret?ip=%s", node.Ip),
 	}