Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/ui-atom.c b/ui-atom.c index e5c31d9..808b2d0 100644 --- a/ ui-atom.c+++ b/ ui-atom.c |
|
@@ -31,9 +31,9 @@ void add_entry(struct commit *commit, char *host) |
31 | html("<name>"); |
31 | html("<name>"); |
32 | html_txt(info->author); |
32 | html_txt(info->author); |
33 | html("</name>\n"); |
33 | html("</name>\n"); |
34 | } |
34 | } |
35 | if (info->author_email) { |
35 | if (info->author_email && !ctx.cfg.noplainemail) { |
36 | mail = xstrdup(info->author_email); |
36 | mail = xstrdup(info->author_email); |
37 | t = strchr(mail, '<'); |
37 | t = strchr(mail, '<'); |
38 | if (t) |
38 | if (t) |
39 | t++; |
39 | t++; |
|