Skip to content

Commit

Permalink
Xray core buggy version removed
Browse files Browse the repository at this point in the history
accept >= v24.11.11 or v1.8.24
  • Loading branch information
MHSanaei committed Nov 12, 2024
1 parent a4cf774 commit 6e59aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/service/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
}

if (major == 1 && minor == 8 && patch == 24) ||
(major == 24 && ((minor > 10) || (minor == 10 && patch >= 16))) ||
(major == 24 && ((minor > 11) || (minor == 11 && patch >= 11))) ||
(major > 24) {
versions = append(versions, release.TagName)
}
Expand Down

0 comments on commit 6e59aa1

Please sign in to comment.