Check list length

main
Bob Mottram 2020-10-07 14:58:39 +01:00
parent c0beeb3e91
commit b353caceb8
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
rssTitle = item[0]
url = item[1]
rssDescription = ''
if len(item) >= 4:
if len(item) >= 5:
rssDescription = item[4]
if rssDescription:
rssDescription += \