diff options
| author | David Bremner <david@tethera.net> | 2018-04-25 17:36:32 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2018-04-25 17:36:32 -0300 |
| commit | 963ccabe93b0564e6979433f5be34395e9aa8ef1 (patch) | |
| tree | fa762847a0e514fcb3d9c43025ec2cba799cc9a2 /lib | |
| parent | 20ba0b7dfae2111f76d71c8d695265014c2ef7c5 (diff) | |
| parent | 15aaa41ce2b9667d86a81b3928a71f542ed448a1 (diff) | |
Merge branch 'release'
reference loop fixes to be included in 0.26.2
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/thread.cc | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/lib/thread.cc b/lib/thread.cc index 3561b27f..e961c76b 100644 --- a/lib/thread.cc +++ b/lib/thread.cc @@ -390,11 +390,15 @@ _thread_add_matched_message (notmuch_thread_t *thread, static void _resolve_thread_relationships (notmuch_thread_t *thread) { - notmuch_message_node_t *node; + notmuch_message_node_t *node, *first_node; notmuch_message_t *message, *parent; const char *in_reply_to; - for (node = thread->message_list->head; node; node = node->next) { + first_node = thread->message_list->head; + if (! first_node) + return; + + for (node = first_node->next; node; node = node->next) { message = node->message; in_reply_to = _notmuch_message_get_in_reply_to (message); if (in_reply_to && strlen (in_reply_to) && @@ -406,6 +410,25 @@ _resolve_thread_relationships (notmuch_thread_t *thread) _notmuch_message_list_add_message (thread->toplevel_list, message); } + /* + * if we reach the end of the list without finding a top-level + * message, that means the thread is a cycle (or set of cycles) + * and any message can be considered top-level. Choose the oldest + * message, which happens to be first in our list. + */ + if (first_node) { + message = first_node->message; + in_reply_to = _notmuch_message_get_in_reply_to (message); + if (thread->toplevel_list->head && + in_reply_to && strlen (in_reply_to) && + g_hash_table_lookup_extended (thread->message_hash, + in_reply_to, NULL, + (void **) &parent)) + _notmuch_message_add_reply (parent, message); + else + _notmuch_message_list_add_message (thread->toplevel_list, message); + } + /* XXX: After scanning through the entire list looking for parents * via "In-Reply-To", we should do a second pass that looks at the * list of messages IDs in the "References" header instead. (And |
