Add link to rss posts

main
Bob Mottram 2020-10-10 10:49:33 +01:00
parent 2bdbb82e73
commit 33ebaf5eec
1 changed files with 4 additions and 2 deletions

View File

@ -103,9 +103,11 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
# add the off-site link to the description
if rssDescription:
rssDescription += \
'<br><br>' + translate['Read more...'] + '<br>' + url
'<br><br><a href="' + url + '">' + \
translate['Read more...'] + '</a><br>'
else:
rssDescription = translate['Read more...'] + '<br>' + url
rssDescription = '<a href="' + url + '">' + \
translate['Read more...'] + '</a><br>'
followersOnly = False
useBlurhash = False