Do not create feed title for untitled posts
parent
c0fdd8af49
commit
b7b106d9db
6
feed.go
6
feed.go
|
@ -97,7 +97,11 @@ func ViewFeed(app *App, w http.ResponseWriter, req *http.Request) error {
|
|||
|
||||
var title, permalink string
|
||||
for _, p := range *coll.Posts {
|
||||
title = p.PlainDisplayTitle()
|
||||
if p.Title.String != "" {
|
||||
title = p.PlainDisplayTitle()
|
||||
} else {
|
||||
title = ""
|
||||
}
|
||||
permalink = fmt.Sprintf("%s%s", baseUrl, p.Slug.String)
|
||||
feed.Items = append(feed.Items, &Item{
|
||||
Id: fmt.Sprintf("%s%s", basePermalinkUrl, p.Slug.String),
|
||||
|
|
Loading…
Reference in New Issue