mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Fix isConnect logic mistake
Co-authored-by: jevin.shi <jevin.shj@gmail.com>
This commit is contained in:
parent
a3b120b25e
commit
e2392d8d40
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ func (c *ServerConn) loopInput() {
|
|||
for {
|
||||
var destination M.Socksaddr
|
||||
var err error
|
||||
if !c.isConnect {
|
||||
if c.isConnect {
|
||||
destination = c.destination
|
||||
} else {
|
||||
destination, err = AddrParser.ReadAddrPort(c.inputReader)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue