浏览代码

Xray core buggy version removed

v1.8.24 and
major >=25.1.1
mhsanaei 3 月之前
父节点
当前提交
26a7700557
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      web/service/server.go

+ 1 - 2
web/service/server.go

@@ -286,8 +286,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
 		}
 
 		if (major == 1 && minor == 8 && patch == 24) ||
-			(major == 24 && ((minor > 11) || (minor == 11 && patch >= 30))) ||
-			(major > 24) {
+			(major >= 25) {
 			versions = append(versions, release.TagName)
 		}
 	}