1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 16:42:26 +02:00

Add safety if adding zero artists

This commit is contained in:
Leo Franchi 2012-08-13 11:48:24 -04:00
parent 674268c271
commit 087102d456

View File

@ -319,6 +319,9 @@ TreeModel::onArtistsAdded( const QList<Tomahawk::artist_ptr>& artists )
{
finishLoading();
if ( artists.isEmpty() )
return;
int c = rowCount( QModelIndex() );
QPair< int, int > crows;
crows.first = c;
@ -342,6 +345,7 @@ void
TreeModel::onTracksAdded( const QList<Tomahawk::query_ptr>& tracks, const QModelIndex& parent )
{
finishLoading();
if ( !tracks.count() )
return;