mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-09 09:32:44 +01:00
Catch more img tag exceptions.
This commit is contained in:
parent
7d8691171e
commit
ff6cd7ccf1
1 changed files with 1 additions and 1 deletions
|
|
@ -1067,9 +1067,9 @@ class Story(Configurable):
|
|||
|
||||
prefix='ffdl'
|
||||
if imgurl not in self.imgurls:
|
||||
parsedUrl = urlparse.urlparse(imgurl)
|
||||
|
||||
try:
|
||||
parsedUrl = urlparse.urlparse(imgurl)
|
||||
if self.getConfig('no_image_processing'):
|
||||
(data,ext,mime) = no_convert_image(imgurl,
|
||||
fetch(imgurl))
|
||||
|
|
|
|||
Loading…
Reference in a new issue