mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-04 18:40:51 +02:00
SB(but not SV) removed RSS link from thread list title. Closes #1017
This commit is contained in:
parent
da7059e978
commit
e330ccbe94
1 changed files with 2 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue