From: William Morgan Date: Thu, 17 Jan 2008 00:25:45 +0000 (-0800) Subject: (minor) bugfix for Container#is_reply? X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=9a85db9b74cf3ed1e4eb198add8f9071f583621d;p=sup (minor) bugfix for Container#is_reply? I guess this method hasn't been used for a while... --- diff --git a/lib/sup/thread.rb b/lib/sup/thread.rb index 83f0db7..3ade024 100644 --- a/lib/sup/thread.rb +++ b/lib/sup/thread.rb @@ -207,7 +207,7 @@ class Container def subj; find_attr :subj; end def date; find_attr :date; end - def is_reply?; subj && Message.subject_is_reply?(subj); end + def is_reply?; subj && Message.subj_is_reply?(subj); end def to_s [ "<#{id}",