mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-06 08:05:28 +01:00
Fix for adapter_bloodshedversecom site changes.
This commit is contained in:
parent
ca07695481
commit
1f17b9c9a0
1 changed files with 2 additions and 1 deletions
|
|
@ -195,7 +195,8 @@ class BloodshedverseComAdapter(BaseSiteAdapter):
|
|||
|
||||
def getChapterText(self, url):
|
||||
soup = self._customized_fetch_url(url)
|
||||
storytext_div = soup.find('div', {'class': 'storytext'})
|
||||
storytext_div = soup.find('div', {'class': 'tl'})
|
||||
storytext_div = storytext_div.find('div', {'class': ''})
|
||||
|
||||
if self.getConfig('strip_text_links'):
|
||||
for anchor in storytext_div('a', {'class': 'FAtxtL'}):
|
||||
|
|
|
|||
Loading…
Reference in a new issue