From bab1410852d6fa810bd2266c84891085991fdfbf Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 12 May 2009 20:45:34 +0000 Subject: [PATCH] * Reversed the IsEmptyStr logic to determine whether a note is in vNote format or legacy text format. Notes are now working again, but it's still calling load_mimepart() every time. --- webcit/notes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/notes.c b/webcit/notes.c index ab4dfff5d..988e11095 100644 --- a/webcit/notes.c +++ b/webcit/notes.c @@ -126,7 +126,7 @@ struct vnote *vnote_new_from_msg(long msgnum,int unread) } if (StrLength(Data) > 0) { - if (!IsEmptyStr(uid_from_headers)) { + if (IsEmptyStr(uid_from_headers)) { // Convert an old-style note to a vNote vnote_from_body = vnote_new(); vnote_from_body->uid = strdup(uid_from_headers); -- 2.30.2