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

* Fixed JavaScript errors causing a Pipeline assert.

This commit is contained in:
Christian Muehlhaeuser 2011-03-21 12:49:44 +01:00
parent 7cb23a39f8
commit 8e42c8964b
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ ScriptEngine::resolve( const Tomahawk::query_ptr& query )
QVariantMap m = mainFrame()->evaluateJavaScript( eval ).toMap();
qDebug() << "JavaScript Result:" << m;
const QString qid = m.value( "qid" ).toString();
const QString qid = query->id();
const QVariantList reslist = m.value( "results" ).toList();
foreach( const QVariant& rv, reslist )

View File

@ -180,6 +180,6 @@ target_link_libraries(tomahawk_qtweetlib
INCLUDE( ${CMAKE_CURRENT_SOURCE_DIR}/twitter-api-keys )
INSTALL(TARGETS tomahawk_qtweetlib DESTINATION lib${LIB_SUFFIX})
INSTALL(TARGETS tomahawk_qtweetlib DESTINATION lib)