From f98f6dafbb018fbdb3169c8b096bcee1ca8f3a43 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Sun, 11 May 2014 00:01:52 -0700 Subject: [PATCH] lower threshold for iqdb matches --- app/logical/iqdb/responses/collection.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/logical/iqdb/responses/collection.rb b/app/logical/iqdb/responses/collection.rb index a5d3fd34d..2fc02f22d 100644 --- a/app/logical/iqdb/responses/collection.rb +++ b/app/logical/iqdb/responses/collection.rb @@ -12,7 +12,7 @@ module Iqdb end def matches - @matches ||= responses.select {|x| x.is_a?(Iqdb::Responses::Response_200) && x.score >= 90} + @matches ||= responses.select {|x| x.is_a?(Iqdb::Responses::Response_200) && x.score >= 80} end def errored?