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:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-06-16 08:22:56 +0300
committerGitHub <noreply@github.com>2025-06-16 08:22:56 +0300
commitdff4ad31ff7b4a743173841ea80ec849bb4bd51e (patch)
tree9f1ea1a61568614277b8a0b357501b302612379e /web
parent13baf778931929fdf1bc1f7d5606c7d73d5d917e (diff)
chore: up minimal xray-core version to v25.6.8
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 bbdc8989..1e29990f 100644
--- a/web/service/server.go
+++ b/web/service/server.go
@@ -295,7 +295,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
continue
}
- if major > 25 || (major == 25 && minor > 3) || (major == 25 && minor == 3 && patch >= 3) {
+ if major > 25 || (major == 25 && minor > 6) || (major == 25 && minor == 6 && patch >= 8) {
versions = append(versions, release.TagName)
}
}