1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

Only emit if there are actually results

This commit is contained in:
Jeff Mitchell
2011-06-24 12:26:44 -04:00
parent 6be00f832d
commit f3ba4beffc

View File

@@ -117,5 +117,6 @@ void
SourcePlaylistInterface::resolvingFinished( bool hasResults )
{
qDebug() << Q_FUNC_INFO << " and has results? : " << (hasResults ? "true" : "false");
if ( hasResults )
emit nextTrackReady();
}