From 492a6ad3430aac1408cd1118366171158d3a0ef7 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 10 Oct 2020 10:53:56 +0100 Subject: [PATCH] Replace characters in rss item description --- newsdaemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newsdaemon.py b/newsdaemon.py index 2f7402a93..f3d442359 100644 --- a/newsdaemon.py +++ b/newsdaemon.py @@ -94,11 +94,11 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str, continue rssTitle = removeControlCharacters(item[0]) - url = removeControlCharacters(item[1]) + url = item[1] rssDescription = '' # get the rss description if it exists - rssDescription = item[4] + rssDescription = removeControlCharacters(item[4]) # add the off-site link to the description if rssDescription: