From: Carl Worth Date: Thu, 22 Apr 2010 21:00:33 +0000 (-0700) Subject: Revert "thread: Fix sort of search when constructing threads." X-Git-Tag: 0.3~115 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=a1099660806a29b883e2210669e385648465f169 Revert "thread: Fix sort of search when constructing threads." This reverts commit f43990ce134d838cdb2cdd5d0752a602e81cfdd9. --- diff --git a/lib/thread.cc b/lib/thread.cc index 1b6feab2..9b37143d 100644 --- a/lib/thread.cc +++ b/lib/thread.cc @@ -299,7 +299,7 @@ _notmuch_thread_create (void *ctx, thread->oldest = 0; thread->newest = 0; - notmuch_query_set_sort (thread_id_query, sort); + notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST); for (messages = notmuch_query_search_messages (thread_id_query); notmuch_messages_valid (messages); @@ -332,8 +332,6 @@ _notmuch_thread_create (void *ctx, if (unlikely (matched_query == NULL)) return NULL; - notmuch_query_set_sort (matched_query, sort); - for (messages = notmuch_query_search_messages (matched_query); notmuch_messages_valid (messages); notmuch_messages_move_to_next (messages))