fix: crash due to nil net.Conn from mieru inbound (#2361)

This commit is contained in:
enfein
2025-11-14 23:42:29 +00:00
committed by GitHub
parent f6e494e73f
commit c107c6a824

View File

@@ -90,6 +90,8 @@ func (m *Mieru) Listen(tunnel C.Tunnel) error {
if err != nil {
if !m.server.IsRunning() {
break
} else {
continue
}
}
go mieru.Handle(c, tunnel, req, additions...)