diff --git a/recipes/nature.recipe b/recipes/nature.recipe index d8af3dd1a6..e7f50bdd70 100644 --- a/recipes/nature.recipe +++ b/recipes/nature.recipe @@ -50,6 +50,13 @@ class Nature(BasicNewsRecipe): self.cover_url = 'https:' + soup.find( 'img', attrs={'data-test': check_words('issue-cover-image')} )['src'] + try: + self.cover_url = self.cover_url.replace("w200","w500") # enlarge cover size resolution + except: + """ + failed, img src might have changed, use default width 200 + """ + pass section_tags = soup.find( 'div', {'data-container-type': check_words('issue-section-list')} )