1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 00:22:31 +02:00

Escape quotes, or Applescript gets confused.

This commit is contained in:
Alejandro Wainzinger 2011-06-09 19:52:33 -07:00
parent 112184c8fa
commit 5a38219754

View File

@ -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 );
}