1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 01:24:11 +02:00

* Result now always returns the actual score regardless of the online state.

This commit is contained in:
Christian Muehlhaeuser
2013-06-20 10:00:53 +02:00
parent 1185a7dcdd
commit b90c6f77b6

View File

@@ -162,10 +162,7 @@ Result::mimetype() const
float
Result::score() const
{
if ( isOnline() )
return m_score;
else
return 0.0;
return m_score;
}