same but for cwtchpeer

This commit is contained in:
erinn 2018-10-09 17:12:08 -07:00
parent 475fea02d2
commit 5e580df127
1 changed files with 2 additions and 2 deletions

View File

@ -394,8 +394,8 @@ func (cp *cwtchPeer) ContactRequest(name string, message string) string {
// Listen sets up an onion listener to process incoming cwtch messages // Listen sets up an onion listener to process incoming cwtch messages
func (cp *cwtchPeer) Listen() error { func (cp *cwtchPeer) Listen() error {
cwtchpeer := new(application.RicochetApplication) cwtchpeer := new(application.RicochetApplication)
l, err := application.SetupOnionV3("127.0.0.1:9051", "tcp4", "", cp.Profile.Ed25519PrivateKey, 9878) l, err := application.SetupOnionV3("127.0.0.1:9051", "tcp4", "", cp.Profile.Ed25519PrivateKey, cp.GetProfile().Onion, 9878)
if err != nil { if err != nil && fmt.Sprintf("%v", err) != "550 Unspecified Tor error: Onion address collision" {
return err return err
} }