This commit is contained in:
mhsanaei 2025-08-04 19:12:37 +02:00
parent 7e9c3bdbaf
commit 4b03e9d919
No known key found for this signature in database
GPG key ID: D875CD086CF668A0
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
2.6.3
2.6.5

View file

@ -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)
}
}