Full url in rss link

merge-requests/8/head
Bob Mottram 2020-10-08 16:07:06 +01:00
parent ea3211e8ed
commit 71a36ec3ee
1 changed files with 4 additions and 1 deletions

View File

@ -164,7 +164,10 @@ def getRSSfromDict(baseDir: str, newswire: {},
continue
rssStr += '<item>\n'
rssStr += ' <title>' + fields[0] + '</title>\n'
rssStr += ' <link>' + fields[1] + '</link>\n'
url = fields[1]
if domainFull not in url:
url = httpPrefix + '://' + domainFull + url
rssStr += ' <link>' + url + '</link>\n'
rssDateStr = pubDate.strftime("%a, %d %b %Y %H:%M:%S UT")
rssStr += ' <pubDate>' + rssDateStr + '</pubDate>\n'