From 2c5e94c26568cb3f5be5733fce8e47b2e336b243 Mon Sep 17 00:00:00 2001 From: knoflook Date: Fri, 28 Jan 2022 12:29:44 +0100 Subject: [PATCH] fix: don't expect title field for feeds --- lumbunglib/feed.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lumbunglib/feed.py b/lumbunglib/feed.py index 32bbe90..93ae387 100644 --- a/lumbunglib/feed.py +++ b/lumbunglib/feed.py @@ -60,6 +60,11 @@ def create_frontmatter(entry): else: author = "" + if "title" in entry: + title = entry.title + else: + title = "" + tags = [] if "tags" in entry: # TODO finish categories @@ -67,7 +72,7 @@ def create_frontmatter(entry): tags.append(t["term"]) frontmatter = { - "title": entry.title, + "title": title, "date": published.format(), "summary": "", "author": author,