diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-04-17 08:33:55 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-04-17 08:33:55 +0300 |
| commit | a660ad64217b5e255027e7eabba03dea851c6de7 (patch) | |
| tree | 41166528d11504adfd2a66b2d7a56f769ce7a640 | |
| parent | 0e175213268ece99f75f75ccc622a9b2938a6a13 (diff) | |
fix DNS outbound error in list
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
| -rw-r--r-- | web/html/xui/xray.html | 2 |
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: |
