@@ -285,7 +285,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
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)