diff --git a/src/libtomahawk/result.cpp b/src/libtomahawk/result.cpp index 1d41c7efa..9df76c3b4 100644 --- a/src/libtomahawk/result.cpp +++ b/src/libtomahawk/result.cpp @@ -128,7 +128,7 @@ Result::id() const bool Result::isOnline() const { - return ( !collection().isNull() && collection()->source()->isOnline() ); + return ( ( !collection().isNull() && collection()->source()->isOnline() ) || collection().isNull() ); }