Add a space when specifying the port to a datagram session

This commit is contained in:
eyedeekay
2024-01-09 13:34:49 -05:00
parent 3dc49e391d
commit 9b7a798782

View File

@ -60,7 +60,7 @@ func (s *SAM) NewDatagramSession(id string, keys i2pkeys.I2PKeys, options []stri
s.Close()
return nil, err
}
conn, err := s.newGenericSession("DATAGRAM", id, keys, options, []string{"PORT=" + lport})
conn, err := s.newGenericSession("DATAGRAM", id, keys, options, []string{" PORT=" + lport})
if err != nil {
return nil, err
}