From 8e48956c87b8516a769159d4ce0418fada22009b Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 20 Jun 2013 10:00:53 +0200 Subject: [PATCH] * Result now always returns the actual score regardless of the online state. --- src/libtomahawk/Result.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/libtomahawk/Result.cpp b/src/libtomahawk/Result.cpp index c290305cf..7370f8a47 100644 --- a/src/libtomahawk/Result.cpp +++ b/src/libtomahawk/Result.cpp @@ -162,10 +162,7 @@ Result::mimetype() const float Result::score() const { - if ( isOnline() ) - return m_score; - else - return 0.0; + return m_score; }