From mboxrd@z Thu Jan 1 00:00:00 1970 From: alex@chmrr.net (Alex Vandiver) Date: Tue, 18 Aug 2009 14:30:00 -0400 Subject: [sup-talk] [PATCH] Fix a thread merging bug introduced by refactoring in 59f8fc2 Message-ID: <1250620200-24319-1-git-send-email-alex@chmrr.net> Signed-off-by: Alex Vandiver --- lib/sup/thread.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/sup/thread.rb b/lib/sup/thread.rb index d395c35..3ff4e7f 100644 --- a/lib/sup/thread.rb +++ b/lib/sup/thread.rb @@ -357,7 +357,7 @@ class ThreadSet return if threads.size < 2 containers = threads.map do |t| - c = @messages.member?(c) ? @messages[t.first.id] : nil + c = @messages.member?(t.first.id) ? @messages[t.first.id] : nil raise "not in threadset: #{t.first.id}" unless c && c.message c end -- 1.6.3.3