Browse Source

mod: filter

Aiden 2 months ago
parent
commit
cc321baa80
1 changed files with 10 additions and 1 deletions
  1. 10 1
      internal/server/server.go

+ 10 - 1
internal/server/server.go

@@ -61,7 +61,16 @@ func Group(c *gin.Context) {
 func V2Group(c *gin.Context) {
 	vip := c.Query("vip")
 	group(c, "v.sweeterlife.net", func(node *model.Node) bool {
-		return (vip == "true" && node.Vip) || (vip == "false" && !node.Vip)
+		if vip == "" {
+			return true
+		}
+		if vip == "true" && node.Vip {
+			return true
+		}
+		if vip == "false" && !node.Vip {
+			return true
+		}
+		return false
 	})
 }