From 564f288411ea2b4f3b341bc9ce571357549181be Mon Sep 17 00:00:00 2001 From: Denis Date: Tue, 30 Sep 2025 14:19:50 +1000 Subject: [PATCH] Update subService.go add one more node vless key in sub --- sub/subService.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sub/subService.go b/sub/subService.go index 55bddf7f..7df7444a 100644 --- a/sub/subService.go +++ b/sub/subService.go @@ -78,6 +78,8 @@ func (s *SubService) GetSubs(subId string, host string) ([]string, int64, xray.C if client.Enable && client.SubID == subId { link := s.getLink(inbound, client.Email) result = append(result, link) + copiedLink := s.createModifiedLink(link, "77.239.104.148", "apple.com") + result = append(result, copiedLink) ct := s.getClientTraffics(inbound.ClientStats, client.Email) clientTraffics = append(clientTraffics, ct) if ct.LastOnline > lastOnline { @@ -109,6 +111,10 @@ func (s *SubService) GetSubs(subId string, host string) ([]string, int64, xray.C } } } + + fixedLink := "vless://ваш-uuid@ваш-домен.com:443?encryption=none&security=tls&type=ws&host=ваш-домен.com&path=%2Ffixed-path#Fixed-Profile" + result = append(result, fixedLink) + return result, lastOnline, traffic, nil }