Skip to content

Commit

Permalink
Merge pull request #18 from InazumaV/dev_new
Browse files Browse the repository at this point in the history
fix in out link bug
  • Loading branch information
Yuzuki616 authored Sep 25, 2023
2 parents 0fc9131 + cea6118 commit 334c6d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/xray/app/dispatcher/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 334c6d3

Please sign in to comment.