diff --git a/recipes/the_new_republic.recipe b/recipes/the_new_republic.recipe index 649a8c46f3..057b898f42 100644 --- a/recipes/the_new_republic.recipe +++ b/recipes/the_new_republic.recipe @@ -44,6 +44,10 @@ class TNR(BasicNewsRecipe): em=post.find('em') b=post.find('b') a=post.find('a',href=True) + p=post.find('img', src=True) + #Find cover + if p is not None: + self.cover_url = p['src'].strip() if em is not None: section_title = self.tag_to_string(em).strip() subsection_title = ''