From d66f78bab0ebe5ee9496b6d5dc4b13feacf81017 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 19 Mar 2011 07:41:04 +0100 Subject: [PATCH] * Advance to HTTP results, again. --- src/libtomahawk/query.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libtomahawk/query.cpp b/src/libtomahawk/query.cpp index 5c44a452a..b8c48e83c 100644 --- a/src/libtomahawk/query.cpp +++ b/src/libtomahawk/query.cpp @@ -173,6 +173,10 @@ Query::checkResults() // hook up signals, and check solved status foreach( const result_ptr& rp, m_results ) { + if ( rp->score() > 0.0 && rp->collection().isNull() ) + { + m_playable = true; + } if ( !rp->collection().isNull() && rp->collection()->source()->isOnline() ) { m_playable = true;