diff --git a/src/libtomahawk/resolvers/JSResolverHelper.cpp b/src/libtomahawk/resolvers/JSResolverHelper.cpp index d039a538b..11e39c86d 100644 --- a/src/libtomahawk/resolvers/JSResolverHelper.cpp +++ b/src/libtomahawk/resolvers/JSResolverHelper.cpp @@ -247,6 +247,14 @@ JSResolverHelper::parseTrack( const QVariantMap& track ) return query; } + +QString +JSResolverHelper::instanceUUID() +{ + return Tomahawk::Database::instance()->impl()->dbid(); +} + + void JSResolverHelper::addUrlResult( const QString& url, const QVariantMap& result ) { diff --git a/src/libtomahawk/resolvers/JSResolverHelper.h b/src/libtomahawk/resolvers/JSResolverHelper.h index 3c4d18ce2..ead715bef 100644 --- a/src/libtomahawk/resolvers/JSResolverHelper.h +++ b/src/libtomahawk/resolvers/JSResolverHelper.h @@ -57,6 +57,7 @@ public slots: QByteArray readRaw( const QString& fileName ); QString readBase64( const QString& fileName ); QString readCompressed( const QString& fileName ); + QString instanceUUID(); QString compress( const QString& data ); QVariantMap resolverData();