mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-01 11:50: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" )
|
||||
continue;
|
||||
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
|
||||
} else { // give it a web result hint
|
||||
// TODO actually read the tags
|
||||
|
Reference in New Issue
Block a user