1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 16:29:43 +01:00

Fix URL encoding.

This commit is contained in:
Alejandro Wainzinger 2011-09-10 02:34:25 -07:00
parent 79920efe4f
commit 983acfc7e4

View File

@ -185,7 +185,7 @@ AdiumPlugin::audioStarted( const QVariant &input )
m_currentArtist = hash["artist"];
// Request a short URL
m_currentLongUrl = openLinkFromHash( hash ).toEncoded();
m_currentLongUrl = openLinkFromHash( hash );
GlobalActionManager::instance()->shortenLink( m_currentLongUrl );
}