mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-19 21:42:24 +00:00
fix mistake
This commit is contained in:
parent
f4cfe9eb63
commit
ea19fb8ff6
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (major >= 25 && minor >= 2 && patch >= 18) || (major >= 26) {
|
if major > 25 || (major == 25 && minor > 2) || (major == 25 && minor == 2 && patch >= 18) {
|
||||||
versions = append(versions, release.TagName)
|
versions = append(versions, release.TagName)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue