From bf1a050d4e8f01b50086ac4a15e4537d70d452b4 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Fri, 1 Aug 2014 10:28:07 +0200 Subject: [PATCH 1/1] Actually display "(No From)" in messageview's From column when appropriate. --- src/summaryview.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/summaryview.c b/src/summaryview.c index d1f2eee60..4986a65a1 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -3350,7 +3350,7 @@ static inline void summary_set_header(SummaryView *summaryview, gchar *text[], extract_address(from_text); } if (!from_text) - _("(No From)"); + from_text = _("(No From)"); } else { gchar *tmp = summary_complete_address(msginfo->from); if (tmp) { @@ -3368,7 +3368,7 @@ static inline void summary_set_header(SummaryView *summaryview, gchar *text[], extract_address(from_text); } if (!from_text) - _("(No From)"); + from_text = _("(No From)"); } } -- 2.25.1