* [sup-talk] [PATCH] xapian: fix mk_addrs args in build_message
@ 2009-07-25 3:25 Rich Lane
2009-07-27 16:17 ` William Morgan
0 siblings, 1 reply; 2+ messages in thread
From: Rich Lane @ 2009-07-25 3:25 UTC (permalink / raw)
---
lib/sup/xapian_index.rb | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/sup/xapian_index.rb b/lib/sup/xapian_index.rb
index d064ffc..23af431 100644
--- a/lib/sup/xapian_index.rb
+++ b/lib/sup/xapian_index.rb
@@ -68,9 +68,9 @@ class XapianIndex < BaseIndex
'date' => Time.at(entry[:date]),
'subject' => entry[:subject],
'from' => mk_addrs[[entry[:from]]],
- 'to' => mk_addrs[[entry[:to]]],
- 'cc' => mk_addrs[[entry[:cc]]],
- 'bcc' => mk_addrs[[entry[:bcc]]],
+ 'to' => mk_addrs[entry[:to]],
+ 'cc' => mk_addrs[entry[:cc]],
+ 'bcc' => mk_addrs[entry[:bcc]],
'reply-tos' => mk_refs[entry[:replytos]],
'references' => mk_refs[entry[:refs]],
}
--
1.6.0.4
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-07-27 16:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-25 3:25 [sup-talk] [PATCH] xapian: fix mk_addrs args in build_message Rich Lane
2009-07-27 16:17 ` William Morgan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox