diff --git a/changedetectionio/rss_tools.py b/changedetectionio/rss_tools.py index 01561ae4c..e5a2fb5cc 100644 --- a/changedetectionio/rss_tools.py +++ b/changedetectionio/rss_tools.py @@ -122,9 +122,7 @@ def format_rss_items(rss_content: str, render_anchor_tag_content=False) -> str: class_str = ' '.join(classes) items_html.append(f'
{item}
') - - # Join items with two
tags - return f'{"\n

".join(items_html)}' + return '\n'+"\n

".join(items_html)+'\n' except Exception as e: logger.warning(f"Error formatting RSS items: {str(e)}")