]> git.cworth.org Git - sup/commitdiff
Fix a recurring bug about killed threads.
authorNicolas Pouillard <nicolas.pouillard@gmail.com>
Mon, 16 Mar 2009 18:39:40 +0000 (19:39 +0100)
committerWilliam Morgan <wmorgan-sup@masanjin.net>
Wed, 18 Mar 2009 15:11:51 +0000 (08:11 -0700)
Resent...

bugs/issue-60d86dd32054533a6206f698033ec668af6a7574.yaml
lib/sup/modes/thread-index-mode.rb

index 7fb616c443f782ebbfc5424b86dc5bf61f45167d..2830fff20e94bfd86be16632b4ba334ad37184f9 100644 (file)
@@ -5,8 +5,8 @@ type: :bugfix
 component: indexing
 release: 
 reporter: William Morgan <wmorgan-sup@masanjin.net>
-status: :unstarted
-disposition: 
+status: :closed
+disposition: :fixed
 creation_time: 2008-04-25 19:28:51.369257 Z
 references: []
 
@@ -20,4 +20,10 @@ log_events:
   - William Morgan <wmorgan-sup@masanjin.net>
   - unassigned from release 0.6
   - ""
+- - 2008-11-21 14:23:17.566852 Z
+  - Nicolas Pouillard <nicolas.pouillard@gmail.com>
+  - closed with disposition fixed
+  - |-
+    Loading options was not given to load_thread_for_message in
+    ThreadIndexMode.add_or_unhide.
 git_branch: 
index 3dd049844284664aee2e8ae7a0317179ea240beb..73144db9ea9e03e04ba545b6051d524808020606 100644 (file)
@@ -567,7 +567,7 @@ protected
   def add_or_unhide m
     @ts_mutex.synchronize do
       if (is_relevant?(m) || @ts.is_relevant?(m)) && !@ts.contains?(m)
-        @ts.load_thread_for_message m
+        @ts.load_thread_for_message m, @load_thread_opts
       end
 
       @hidden_threads.delete @ts.thread_for(m)