]> git.notmuchmail.org Git - notmuch/commitdiff
Revert "thread: Fix sort of search when constructing threads."
authorCarl Worth <cworth@cworth.org>
Thu, 22 Apr 2010 21:00:33 +0000 (14:00 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 22 Apr 2010 21:00:33 +0000 (14:00 -0700)
This reverts commit f43990ce134d838cdb2cdd5d0752a602e81cfdd9.

lib/thread.cc

index 1b6feab21626430a0f2247314372fba70612a653..9b37143d33a4b14aabd62ed20c13183d506ba714 100644 (file)
@@ -299,7 +299,7 @@ _notmuch_thread_create (void *ctx,
     thread->oldest = 0;
     thread->newest = 0;
 
     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);
 
     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;
 
        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))
        for (messages = notmuch_query_search_messages (matched_query);
             notmuch_messages_valid (messages);
             notmuch_messages_move_to_next (messages))