X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fmessage.cc;h=cb313326270e6bc3b0ba5813a5491269e5a62ebb;hp=36a07a8890b0dd52a092fc8c88434676cc4193be;hb=a8a270522231b186493ecd97d56a1343382d51d8;hpb=06adc276682d1d5f73d78df2e898ad4191eb4499;ds=sidebyside diff --git a/lib/message.cc b/lib/message.cc index 36a07a88..cb313326 100644 --- a/lib/message.cc +++ b/lib/message.cc @@ -1034,10 +1034,16 @@ _notmuch_message_set_header_values (notmuch_message_t *message, /* GMime really doesn't want to see a NULL date, so protect its * sensibilities. */ - if (date == NULL || *date == '\0') + if (date == NULL || *date == '\0') { time_value = 0; - else + } else { time_value = g_mime_utils_header_decode_date (date, NULL); + /* + * Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=779923 + */ + if (time_value < 0) + time_value = 0; + } message->doc.add_value (NOTMUCH_VALUE_TIMESTAMP, Xapian::sortable_serialise (time_value));