SB(but not SV) removed RSS link from thread list title. Closes #1017

This commit is contained in:
Jim Miller 2023-11-21 18:52:00 -06:00
parent da7059e978
commit e330ccbe94

View file

@ -110,7 +110,8 @@ class BaseXenForo2ForumAdapter(BaseXenForoForumAdapter):
# logger.debug(desc)
title = header.find('h1',{'class':'threadmarkListingHeader-name'})
if title:
title.a.decompose() # remove RSS link.
if title.a:
title.a.decompose() # remove RSS link.
self.story.setMetadata("threadmarks_title",stripHTML(title))
statusdt = header.find('dt',string="Index progress")
if statusdt: