fix in out link bug

This commit is contained in:
yuzuki999 2023-09-25 15:38:34 +08:00
parent 4ecbcf62f5
commit cea6118ba6

View File

@ -492,6 +492,10 @@ func (d *DefaultDispatcher) routedDispatch(ctx context.Context, link *transport.
}
}
if handler == nil {
handler = d.ohm.GetHandler(inTag)
}
if handler == nil {
handler = d.ohm.GetDefaultHandler()
}