From 66836ae0bd2bcdfbf04a4110ced4e064e71bb8cb Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 15 Mar 2012 09:04:16 +0100 Subject: [PATCH] * Something is wonky about CLucene scoring. Rely on our internal scoring. --- src/libtomahawk/database/fuzzyindex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/database/fuzzyindex.cpp b/src/libtomahawk/database/fuzzyindex.cpp index f9cf8802c..b7597c9c7 100644 --- a/src/libtomahawk/database/fuzzyindex.cpp +++ b/src/libtomahawk/database/fuzzyindex.cpp @@ -227,7 +227,7 @@ FuzzyIndex::search( const Tomahawk::query_ptr& query ) fqry = _CLNEW FuzzyQuery( term ); qry->add( fqry, true, BooleanClause::MUST ); - minScore = 0.05; + minScore = 0.00; } Hits* hits = m_luceneSearcher->search( qry );