fix(relay): ignore relays errors #112

This commit is contained in:
Alexey Kasyanchuk 2020-01-07 12:54:06 +03:00
parent 05a712e676
commit be81f81032

View File

@ -488,6 +488,10 @@ class p2p {
this.connectToRelay(candidatePeer[0], --tryes)
}
});
this.relaySocket.on('error', (err) => {
logT('relay', 'error during relay connection:', err);
})
})
}
}