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:
parent
112184c8fa
commit
5a38219754
@ -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 );
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user