1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00
This commit is contained in:
Dominik Schmidt
2015-01-05 04:47:08 +01:00
parent 343767f03c
commit e88f57839a

View File

@@ -86,8 +86,8 @@ ScriptInfoPlugin::pushInfo( Tomahawk::InfoSystem::InfoPushData pushData )
QVariantMap arguments;
arguments[ "type" ] = pushData.type;
arguments[ "pushFlags" ] = pushData.pushFlags;
arguments[ "input" ] = serializeQVariantMap ( pushData.infoPair.second.toMap() );
arguments[ "additionalInput" ] = serializeQVariantMap( pushData.infoPair.first );
arguments[ "input" ] = pushData.infoPair.second.toMap();
arguments[ "additionalInput" ] = pushData.infoPair.first.toMap();
m_scriptObject->invoke( "pushInfo", arguments );
}