talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit bf1a050d4e8f01b50086ac4a15e4537d70d452b4
parent 7229dd2c728a99266b47b7a3e154ef4744cb9c43
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Fri,  1 Aug 2014 10:28:07 +0200

Actually display "(No From)" in messageview's From column when appropriate.

Diffstat:
Msrc/summaryview.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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)"); } }