Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-03-04 11:50:24 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-03-04 11:54:10 +0300
commit0f97eca314cdd3855e13ff7c77fea5c3da234dbb (patch)
treed2a83993b114e1c19298084837365b7e5b4430a6 /web
parentfb79081aa127e0f1b6c50635248d39fc6cf8bc7a (diff)
Xray core v25.3.3
Diffstat (limited to 'web')
-rw-r--r--web/service/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/service/server.go b/web/service/server.go
index 457f0570..db604bc9 100644
--- a/web/service/server.go
+++ b/web/service/server.go
@@ -285,7 +285,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
continue
}
- if major > 25 || (major == 25 && minor > 2) || (major == 25 && minor == 2 && patch >= 18) {
+ if major > 25 || (major == 25 && minor > 3) || (major == 25 && minor == 3 && patch >= 3) {
versions = append(versions, release.TagName)
}
}