From 72e15012ebbac93ab98f280e39ecf43210197748 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Thu, 27 Mar 2014 11:05:16 -0700 Subject: [PATCH] fix iqdb match constraint --- 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 862618bed..a01ab2c8c 100644 --- a/app/logical/iqdb/responses/collection.rb +++ b/app/logical/iqdb/responses/collection.rb @@ -10,7 +10,7 @@ module Iqdb end def matches - @matches ||= responses.select {|x| x.is_a?(Iqdb::Responses::Response_200) && x.score >= 0.9} + @matches ||= responses.select {|x| x.is_a?(Iqdb::Responses::Response_200) && x.score >= 90} end def empty?