diff --git a/src/libtomahawk/utils/xspfloader.cpp b/src/libtomahawk/utils/xspfloader.cpp index 72466f197..88ad39b6f 100644 --- a/src/libtomahawk/utils/xspfloader.cpp +++ b/src/libtomahawk/utils/xspfloader.cpp @@ -99,6 +99,7 @@ XSPFLoader::gotBody() if ( m_title.isEmpty() ) m_title = tr( "New Playlist" ); + bool shownError = false; for ( unsigned int i = 0; i < tracklist.length(); i++ ) { QDomNode e = tracklist.at( i ); @@ -118,6 +119,14 @@ XSPFLoader::gotBody() track = n.text(); } } + + if( artist.isEmpty() || track.isEmpty() ) { + if( !shownError ) { + QMessageBox::warning( 0, tr( "Failed to save tracks" ), tr( "Some tracks in the playlist do not contain an artist and a title. They will be ignored." ), QMessageBox::Ok ); + shownError = true; + } + continue; + } plentry_ptr p( new PlaylistEntry ); p->setGuid( uuid() );