mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-28 11:13:02 +01:00
Handle tags within the title anchor
This commit is contained in:
parent
4c4576f331
commit
2e38ef1122
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ class FanfictionCsodaidokHuAdapter(BaseSiteAdapter):
|
|||
else:
|
||||
raise exceptions.FailedToDownload(self.url)
|
||||
|
||||
title = a.string
|
||||
title = ''.join(a(text=True))
|
||||
self.story.setMetadata('title', title)
|
||||
if not self.chapterUrls:
|
||||
self.chapterUrls.append((title, self.url))
|
||||
|
|
|
|||
Loading…
Reference in a new issue