Skip to content

Commit

Permalink
resolver logic was discarding results with a score :(
Browse files Browse the repository at this point in the history
  • Loading branch information
dougma committed Jun 1, 2009
1 parent 6018c37 commit b97cc84
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/resolver.cpp
Expand Up @@ -491,6 +491,8 @@ Resolver::add_results(query_uid qid, const vector< ri_ptr >& results, string via
rip->set_score( score );
rq->add_result( rip );
}
} else if (rip->score() > 0) {
rq->add_result( rip );
}
}
} else {
Expand Down

0 comments on commit b97cc84

Please sign in to comment.