From 8a62c6a915235ad69fdf025a67c787d3d71bf768 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 26 Jan 2021 01:55:46 +0100 Subject: [PATCH] Fixed RSS item images --- app/__init__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index c2c768e..988b9ca 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -107,7 +107,7 @@ def rss_route(): pages = get_pages(with_content=True) return Response(''' - + '''.format( title=page.get('title', '[No Title]'), link=page.get('uri', ''), published=page['published'].strftime('%a, %d %b %Y %H:%M:%S GMT') if 'published' in page else '', - # description=page.get('description', ''), content=page.get('content', ''), image=page.get('image', ''), )