Merge pull request #18 from InazumaV/dev_new

fix in out link bug
This commit is contained in:
Yuzuki
2023-09-25 15:39:22 +08:00
committed by GitHub

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 { if handler == nil {
handler = d.ohm.GetDefaultHandler() handler = d.ohm.GetDefaultHandler()
} }