diff --git a/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp b/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp index 618df95f1..0856c7eb7 100644 --- a/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp +++ b/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp @@ -156,7 +156,10 @@ AdiumPlugin::audioStarted( const QVariant &input ) nowPlaying.append(" - "); nowPlaying.append( hash["artist"] ); nowPlaying.append( " " ); + // Escape quotes, or Applescript gets confused + nowPlaying.replace( "\"", "\\\"" ); nowPlaying.append( openLinkFromHash( hash ).toEncoded() ); + qDebug() << "nowPlaying: " << nowPlaying; setStatus( nowPlaying ); }