1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

Fix coding style

This commit is contained in:
Uwe L. Korn
2013-02-02 17:34:27 +01:00
parent c4b734fcf3
commit 23fe2de9b1

View File

@@ -86,7 +86,8 @@ SpotifyParser::lookupUrl( const QString& rawLink )
link = "spotify:" + link; link = "spotify:" + link;
} }
// Some spotify apps contain the link to the playlist as url-encoded in their link (e.g. ShareMyPlaylists) // Some spotify apps contain the link to the playlist as url-encoded in their link (e.g. ShareMyPlaylists)
if ( link.contains( "%3A" ) ) { if ( link.contains( "%3A" ) )
{
link = QUrl::fromPercentEncoding( link.toUtf8() ); link = QUrl::fromPercentEncoding( link.toUtf8() );
} }
// TODO: Ignoring search and user querys atm // TODO: Ignoring search and user querys atm