mirror of https://gitlab.com/bashrc2/epicyon
Replace characters in rss item description
parent
33ebaf5eec
commit
492a6ad343
|
@ -94,11 +94,11 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
|
||||||
continue
|
continue
|
||||||
|
|
||||||
rssTitle = removeControlCharacters(item[0])
|
rssTitle = removeControlCharacters(item[0])
|
||||||
url = removeControlCharacters(item[1])
|
url = item[1]
|
||||||
rssDescription = ''
|
rssDescription = ''
|
||||||
|
|
||||||
# get the rss description if it exists
|
# get the rss description if it exists
|
||||||
rssDescription = item[4]
|
rssDescription = removeControlCharacters(item[4])
|
||||||
|
|
||||||
# add the off-site link to the description
|
# add the off-site link to the description
|
||||||
if rssDescription:
|
if rssDescription:
|
||||||
|
|
Loading…
Reference in New Issue