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
diff options
context:
space:
mode:
authorlillinlin <126753730+lillinlin@users.noreply.github.com>2025-11-02 16:46:50 +0300
committerGitHub <noreply@github.com>2025-11-02 16:46:50 +0300
commit575ee854c8c2421ac9e4df74da53b44753995a50 (patch)
treedf49a592ee81a64b52ddd714aff53e00874d590e /web/assets/js/model/inbound.js
parent9936af80dd76a3400444a0fc6d18e8c3c4abcd8f (diff)
Better Random Reality (#3585)
* Update reality_targets.js * Update inbound.js
Diffstat (limited to 'web/assets/js/model/inbound.js')
-rw-r--r--web/assets/js/model/inbound.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js
index 0718b20c..15410750 100644
--- a/web/assets/js/model/inbound.js
+++ b/web/assets/js/model/inbound.js
@@ -744,7 +744,7 @@ class RealityStreamSettings extends XrayCommonClass {
if (!target && !serverNames) {
const randomTarget = typeof getRandomRealityTarget !== 'undefined'
? getRandomRealityTarget()
- : { target: 'google.com:443', sni: 'google.com,www.google.com' };
+ : { target: 'www.apple.com:443', sni: 'www.apple.com,apple.com' };
target = randomTarget.target;
serverNames = randomTarget.sni;
}