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:
@@ -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
|
||||||
|
Reference in New Issue
Block a user