limit xray versions
Some checks are pending
Release X-UI / build (386) (push) Waiting to run
Release X-UI / build (amd64) (push) Waiting to run
Release X-UI / build (arm64) (push) Waiting to run
Release X-UI / build (armv5) (push) Waiting to run
Release X-UI / build (armv6) (push) Waiting to run
Release X-UI / build (armv7) (push) Waiting to run
Release X-UI / build (s390x) (push) Waiting to run
Release X-UI / Build for Windows (push) Waiting to run

This commit is contained in:
Alireza Ahmadi 2026-06-12 22:19:31 +02:00
parent e1fc52f86c
commit e7918db752

View file

@ -246,7 +246,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
}
var versions []string
for _, release := range releases {
if release.TagName >= "v26.1.23" {
if release.TagName >= "v26.4.25" {
versions = append(versions, release.TagName)
}
}