aboutsummaryrefslogtreecommitdiff
path: root/internal/template/feed.tpl.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/template/feed.tpl.go')
-rw-r--r--internal/template/feed.tpl.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/template/feed.tpl.go b/internal/template/feed.tpl.go
index 2bf07f3..3f6470f 100644
--- a/internal/template/feed.tpl.go
+++ b/internal/template/feed.tpl.go
@@ -70,7 +70,7 @@ const feedTpl = `{{- /*gotype:github.com/Necoro/feed2imap-go/internal/feed.feedi
<hr width="100%"/>
<table width="100%" cellpadding="0" cellspacing="0">
{{template "bottomLine" (dict "descr" "Date:" "content" .Item.Published)}}
- {{template "bottomLine" (dict "descr" "Author:" "content" .Item.Author.Name)}}
+ {{with .Item.Author}}{{template "bottomLine" (dict "descr" "Author:" "content" .Name)}}{{end}}
{{template "bottomLine" (dict "descr" "Subject:" "content" .Item.Title)}}
{{template "bottomLine" (dict "descr" "Filed under:" "content" (join ", " .Item.Categories))}}
</table>`