diff --git a/simplerss/src/plugin.py b/simplerss/src/plugin.py index eae373c8c..da8639917 100644 --- a/simplerss/src/plugin.py +++ b/simplerss/src/plugin.py @@ -409,7 +409,7 @@ def showEnclosure(self, enclosures, show=True): filelist = [] index = 0 for enclosure in enclosures: - if enclosure[1] in ["image/jpg", "image/png", "image/gif"]: + if enclosure[1] in ["image/jpg", "image/jpeg", "image/png", "image/gif"]: filename = enclosure[0][enclosure[0].rfind("/") + 1:].lower() if self.pollEnclosure(enclosure[0], join(TEMPPATH, filename)): filelist.append(((join(TEMPPATH, filename), False), None))