mhsanaei 2 weeks ago
parent
commit
4b03e9d919
2 changed files with 2 additions and 2 deletions
  1. 1 1
      config/version
  2. 1 1
      web/service/server.go

+ 1 - 1
config/version

@@ -1 +1 @@
-2.6.3
+2.6.5

+ 1 - 1
web/service/server.go

@@ -330,7 +330,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
 			continue
 		}
 
-		if major > 25 || (major == 25 && minor > 7) || (major == 25 && minor == 7 && patch >= 26) {
+		if major > 25 || (major == 25 && minor > 8) || (major == 25 && minor == 8 && patch >= 3) {
 			versions = append(versions, release.TagName)
 		}
 	}