From: wmorgan Date: Mon, 12 Feb 2007 23:32:33 +0000 (+0000) Subject: bugfix for archived events X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=05e54f4de9fe91ad94ce36938b094f519a72a521;p=sup bugfix for archived events git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@325 5c8cc53c-5e98-4d25-b20a-d8db53a31250 --- diff --git a/lib/sup/modes/inbox-mode.rb b/lib/sup/modes/inbox-mode.rb index 780ae4c..c651988 100644 --- a/lib/sup/modes/inbox-mode.rb +++ b/lib/sup/modes/inbox-mode.rb @@ -26,7 +26,10 @@ class InboxMode < ThreadIndexMode end def handle_archived_update sender, t - hide_thread t if contains_thread? t + if contains_thread? t + hide_thread t + regen_text + end end # not quite working, and not sure if i like it anyways