1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-22 17:01:51 +02:00

* Fixed Servent not emitting ready() if it's not meant to setup UPNP.

This commit is contained in:
Christian Muehlhaeuser 2011-01-13 17:28:14 +01:00
parent e828972b95
commit ff512d8289

@ -102,6 +102,10 @@ Servent::startListening( QHostAddress ha, bool upnp, int port )
connect( m_portfwd, SIGNAL( externalAddressDetected( QHostAddress, unsigned int ) ),
SLOT( setExternalAddress( QHostAddress, unsigned int ) ) );
}
else
{
emit ready();
}
return true;
}