Fix MTProxy

This commit is contained in:
Shtorm
2026-07-18 14:21:25 +03:00
parent 6941854ce2
commit 03f2be2ee6

View File

@@ -102,10 +102,9 @@ func (n *Inbound) Start(stage adapter.StartStage) error {
}
func (n *Inbound) Close() error {
err := common.Close(&n.listener)
n.proxy.Shutdown()
return common.Close(
&n.listener,
)
return err
}
func (h *Inbound) UpdateUsers(users []option.MTProxyUser) {