mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-21 23:15:51 +00:00
Bump Xray version cutoff to 26.4.17
Update GetXrayVersions in web/service/server.go to select releases newer than 26.4.17 (previously 26.2.6). This relaxes the version filter so releases >= 26.4.17 are included.
This commit is contained in:
parent
394fafd29b
commit
ca2fd3814f
1 changed files with 1 additions and 1 deletions
|
|
@ -569,7 +569,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
|
|||
continue
|
||||
}
|
||||
|
||||
if major > 26 || (major == 26 && minor > 2) || (major == 26 && minor == 2 && patch >= 6) {
|
||||
if major > 26 || (major == 26 && minor > 4) || (major == 26 && minor == 4 && patch >= 17) {
|
||||
versions = append(versions, release.TagName)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue