forked from indymedia/epicyon
Replace characters in rss item description
parent
33ebaf5eec
commit
492a6ad343
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue