diff --git a/src/libtomahawk-playdarapi/Api_v1_5.cpp b/src/libtomahawk-playdarapi/Api_v1_5.cpp index c99f2dcf2..da2d0385b 100644 --- a/src/libtomahawk-playdarapi/Api_v1_5.cpp +++ b/src/libtomahawk-playdarapi/Api_v1_5.cpp @@ -96,6 +96,7 @@ Api_v1_5::playback( QxtWebRequestEvent* event, const QString& command ) { QVariantMap trackInfo; trackInfo.insert( "playing", true ); + trackInfo.insert( "position", AudioEngine::instance()->currentTime() / 1000 ); trackInfo.insert( "bitrate", currentTrack->bitrate() ); if ( !currentTrack->resolvedBy().isNull() ) { QString resolverName = currentTrack->resolvedBy()->name();