removed calls to self() from inside constructors in peer connections
This commit is contained in:
@@ -720,7 +720,11 @@ namespace aux {
|
||||
c->m_in_constructor = false;
|
||||
#endif
|
||||
|
||||
if (!c->is_disconnecting()) m_connections.insert(c);
|
||||
if (!c->is_disconnecting())
|
||||
{
|
||||
m_connections.insert(c);
|
||||
c->start();
|
||||
}
|
||||
}
|
||||
catch (std::exception& exc)
|
||||
{
|
||||
|
Reference in New Issue
Block a user