From 5a38219754a1d77b727347031a4a304ace6947f2 Mon Sep 17 00:00:00 2001 From: Alejandro Wainzinger Date: Thu, 9 Jun 2011 19:52:33 -0700 Subject: [PATCH] Escape quotes, or Applescript gets confused. --- src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp | 3 +++ 1 file changed, 3 insertions(+) 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 ); }