1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 13:47:26 +02:00

Less debug

This commit is contained in:
Hugo Lindström
2011-10-03 10:16:54 +02:00
parent 5812b2bec1
commit 08df9f924f

View File

@@ -69,24 +69,16 @@ SpotifyParser::lookupUrl( const QString& link )
{ {
if( link.contains( "track" ) ) if( link.contains( "track" ) )
{ {
qDebug() << "Loooking up track" << link;
m_trackMode = true; m_trackMode = true;
lookupTrack( link ); lookupTrack( link );
} }
else if( link.contains( "playlist" ) || link.contains( "album" ) || link.contains( "artist" ) ) else if( link.contains( "playlist" ) || link.contains( "album" ) || link.contains( "artist" ) )
{ {
if( !m_createNewPlaylist )
qDebug() << "Loooking up browse" << link;
if( !m_createNewPlaylist ){
qDebug() << "Do not create new pl!";
m_trackMode = true; m_trackMode = true;
}else{ else
qDebug() << "create new pl!";
m_trackMode = false; m_trackMode = false;
}
lookupSpotifyBrowse( link ); lookupSpotifyBrowse( link );
} }
else else