sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 7914429bb85086d411760d27e3755dbc90d5f329
parent b2d78427be803808497aca1a8fcf868e3c778e0e
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Wed, 26 Dec 2007 13:21:52 -0800

whoops, fix spurious delete in previous commit

Diffstat:
M lib/sup/index.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/index.rb b/lib/sup/index.rb
@@ -383,7 +383,7 @@ EOS
   end
 
   def has_any_from_source_with_label? source, label
-    q = erret::Search::BooleanQuery.new
+    q = Ferret::Search::BooleanQuery.new
     q.add_query Ferret::Search::TermQuery.new("source_id", source.id.to_s), :must
     q.add_query Ferret::Search::TermQuery.new("label", label.to_s), :must
     index.search(q, :limit => 1).total_hits > 0