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
commit 334c6d33ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()
}