From 118baf12df21e1703e5a3166e67946a7ed96ce06 Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Wed, 28 May 2025 23:00:40 +0200 Subject: [PATCH] shadowsocks manageable --- service/inbounds.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/service/inbounds.go b/service/inbounds.go index ad6526b..8d11512 100644 --- a/service/inbounds.go +++ b/service/inbounds.go @@ -66,6 +66,9 @@ func (s *InboundService) GetAll() (*[]map[string]interface{}, error) { if inbound.Type == "shadowtls" { json.Unmarshal(restFields["version"], &shadowtls_version) } + if inbound.Type == "shadowsocks" { + inbData["managed"] = restFields["managed"] + } } if s.hasUser(inbound.Type) { if inbound.Type == "shadowtls" && shadowtls_version < 3 {