From 983acfc7e44018d9f6676f30b7afe6b1f68de614 Mon Sep 17 00:00:00 2001 From: Alejandro Wainzinger Date: Sat, 10 Sep 2011 02:34:25 -0700 Subject: [PATCH] Fix URL encoding. --- src/libtomahawk/infosystem/infoplugins/mac/adiumplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/infosystem/infoplugins/mac/adiumplugin.cpp b/src/libtomahawk/infosystem/infoplugins/mac/adiumplugin.cpp index 4e029921c..455492772 100644 --- a/src/libtomahawk/infosystem/infoplugins/mac/adiumplugin.cpp +++ b/src/libtomahawk/infosystem/infoplugins/mac/adiumplugin.cpp @@ -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 ); }