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/html
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2024-04-17 08:33:55 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2024-04-17 08:33:55 +0300
commita660ad64217b5e255027e7eabba03dea851c6de7 (patch)
tree41166528d11504adfd2a66b2d7a56f769ce7a640 /web/html
parent0e175213268ece99f75f75ccc622a9b2938a6a13 (diff)
fix DNS outbound error in list
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/xray.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/xui/xray.html b/web/html/xui/xray.html
index 310735b2..0f348fb5 100644
--- a/web/html/xui/xray.html
+++ b/web/html/xui/xray.html
@@ -1100,7 +1100,7 @@
serverObj = o.settings.servers;
break;
case Protocols.DNS:
- return [o.settings.address + ':' + o.settings.port];
+ return [o.settings?.address + ':' + o.settings?.port];
case Protocols.Wireguard:
return o.settings.peers.map(peer => peer.endpoint);
default: