Fix #2021517 [Foreign Affairs News does not download](https://bugs.launchpad.net/calibre/+bug/2021517)

This commit is contained in:
Kovid Goyal 2023-05-29 22:02:41 +05:30
parent 1e16f53631
commit 034fc140d6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -155,7 +155,7 @@ class ForeignAffairsRecipe(BasicNewsRecipe):
self.timefmt = u' [%s]' % date self.timefmt = u' [%s]' % date
link = soup.find('link', rel='canonical', href=True)['href'] link = soup.find('link', rel='canonical', href=True)['href']
year, volnum, issue_vol = link.split('/')[-3:] year, volnum, issue_vol = link.split('/')[-3:]
self.cover_url = soup.find(**classes('subscribe-callout-image'))['data-src'].split("|")[-1] self.cover_url = soup.find(**classes('subscribe-callout-image'))['srcset'].split()[-3]
self.cover_url = self.cover_url.split('?')[0] self.cover_url = self.cover_url.split('?')[0]
self.cover_url = self.cover_url.replace('_webp_issue_small_2x', '_webp_issue_large_2x') self.cover_url = self.cover_url.replace('_webp_issue_small_2x', '_webp_issue_large_2x')