Skip to content

Commit

Permalink
bugfix in threadid response for seen messages
Browse files Browse the repository at this point in the history
  • Loading branch information
wmorgan committed Mar 12, 2012
1 parent 1f5b844 commit 6377368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/heliotrope/meta-index.rb
Expand Up @@ -231,8 +231,8 @@ def fetch_docid_for_safe_msgid safe_msgid
key = "docid/#{safe_msgid}"
if contains_key? key
docid = load_int key
threadid = load_int "thread/#{docid}"
return [docid, threadid]
threadid = load_int "threadid/#{docid}"
[docid, threadid]
end
end

Expand Down

0 comments on commit 6377368

Please sign in to comment.