simplify code

pull/69/head
v2ray 2016-01-11 12:35:36 +01:00
parent 47e2d957d1
commit 8f1c4b7f71
1 changed files with 2 additions and 4 deletions

View File

@ -160,10 +160,8 @@ func (this *Point) DispatchToOutbound(context app.Context, packet v2net.Packet)
dispatcher := this.och
if this.router != nil {
tag, err := this.router.TakeDetour(dest)
if err == nil {
handler, found := this.odh[tag]
if found {
if tag, err := this.router.TakeDetour(dest); err == nil {
if handler, found := this.odh[tag]; found {
dispatcher = handler
}
}