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:
parent
674268c271
commit
087102d456
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user