Skip to content

Commit

Permalink
Fix outbound not found message
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed Oct 26, 2023
1 parent de0b5cc commit edf7d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion box_outbound.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func (s *Box) startOutbounds() error {
}
problemOutbound := outbounds[problemOutboundTag]
if problemOutbound == nil {
return E.New("dependency[", problemOutbound, "] not found for outbound[", outboundTags[oCurrent], "]")
return E.New("dependency[", problemOutboundTag, "] not found for outbound[", outboundTags[oCurrent], "]")
}
return lintOutbound(append(oTree, problemOutboundTag), problemOutbound)
}
Expand Down

0 comments on commit edf7d04

Please sign in to comment.