Skip to content

Commit

Permalink
[SimpleRSS] type 'image/jpeg' added
Browse files Browse the repository at this point in the history
  • Loading branch information
MrServo committed Sep 14, 2023
1 parent a5ff18e commit dc8d78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simplerss/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit dc8d78f

Please sign in to comment.