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

Add consistent display of artist before song title in Adium Plugin. Fixes TWK-225.

This commit is contained in:
Alejandro Wainzinger 2011-06-13 01:39:41 -07:00
parent 6ff43b8aed
commit 508bed5ef4

View File

@ -152,9 +152,9 @@ AdiumPlugin::audioStarted( const QVariant &input )
return;
QString nowPlaying = "";
nowPlaying.append( hash["title"] );
nowPlaying.append(" - ");
nowPlaying.append( hash["artist"] );
nowPlaying.append(" - ");
nowPlaying.append( hash["title"] );
nowPlaying.append( " " );
// Escape quotes, or Applescript gets confused
nowPlaying.replace( "\"", "\\\"" );