Browse Source

Xray core buggy version removed

accept >= v24.11.11 or v1.8.24
mhsanaei 1 week ago
parent
commit
6e59aa14b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/service/server.go

+ 1 - 1
web/service/server.go

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