diff --git a/src/libtomahawk/utils/SpotifyParser.cpp b/src/libtomahawk/utils/SpotifyParser.cpp index 4219d804a..2076fb8a1 100644 --- a/src/libtomahawk/utils/SpotifyParser.cpp +++ b/src/libtomahawk/utils/SpotifyParser.cpp @@ -81,7 +81,7 @@ SpotifyParser::lookupUrl( const QString& rawLink ) QString link = rawLink; if ( link.contains( "open.spotify.com/" ) ) // convert to a URI { - link.replace( "http://open.spotify.com/", "" ); + link.replace( "http://", "" ).replace( "open.spotify.com/", "" ); link.replace( "/", ":" ); link = "spotify:" + link; }