X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=lib%2Fthread.cc;h=9847cf8bfc868d6b63e24a8ff56eb2943e997d36;hb=ef5b4947d8eaea745764e11fe346f67ca2e4a988;hp=79c3e9bb5d463e84b3466c76ab307dddf013c19e;hpb=4135a1f8dae02e712ff172ae38f68b74f9721236;p=notmuch diff --git a/lib/thread.cc b/lib/thread.cc index 79c3e9bb..9847cf8b 100644 --- a/lib/thread.cc +++ b/lib/thread.cc @@ -24,6 +24,8 @@ #include #include /* GHashTable */ +#define EMPTY_STRING(s) ((s)[0] == '\0') + struct visible _notmuch_thread { notmuch_database_t *notmuch; char *thread_id; @@ -249,8 +251,8 @@ _thread_add_message (notmuch_thread_t *thread, term != NULL; term = term->next) { - /* We ignore initial 'K'. */ - if (strcmp(tag, (term->string + 1)) == 0) { + /* Check for an empty string, and then ignore initial 'K'. */ + if (*(term->string) && strcmp(tag, (term->string + 1)) == 0) { message_excluded = TRUE; break; } @@ -332,10 +334,12 @@ _thread_set_subject_from_message (notmuch_thread_t *thread, cleaned_subject = talloc_strdup (thread, subject); } - if (thread->subject) - talloc_free (thread->subject); + if (! EMPTY_STRING(cleaned_subject)) { + if (thread->subject) + talloc_free (thread->subject); - thread->subject = talloc_strdup (thread, cleaned_subject); + thread->subject = talloc_strdup (thread, cleaned_subject); + } } /* Add a message to this thread which is known to match the original @@ -360,7 +364,8 @@ _thread_add_matched_message (notmuch_thread_t *thread, if (date > thread->newest || ! thread->matched_messages) { thread->newest = date; - if (sort != NOTMUCH_SORT_OLDEST_FIRST) + const char *cur_subject = notmuch_thread_get_subject(thread); + if (sort != NOTMUCH_SORT_OLDEST_FIRST || EMPTY_STRING(cur_subject)) _thread_set_subject_from_message (thread, message); }