mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 06:07:37 +02:00
work around isLocalFile not existing
This commit is contained in:
@@ -169,7 +169,8 @@ GlobalActionManager::handleQueueCommand( const QUrl& url )
|
|||||||
if( pair.first != "url" )
|
if( pair.first != "url" )
|
||||||
continue;
|
continue;
|
||||||
QUrl track = QUrl::fromUserInput( pair.second );
|
QUrl track = QUrl::fromUserInput( pair.second );
|
||||||
if( track.isLocalFile() ) { // it's local, so we see if it's in the DB and load it if so
|
//FIXME: isLocalFile is part of KUrl, not QUrl
|
||||||
|
if( false /*track.isLocalFile()*/ ) { // it's local, so we see if it's in the DB and load it if so
|
||||||
// TODO
|
// TODO
|
||||||
} else { // give it a web result hint
|
} else { // give it a web result hint
|
||||||
// TODO actually read the tags
|
// TODO actually read the tags
|
||||||
|
Reference in New Issue
Block a user