From f9ac4f925ba91a538b6582f7691cabaf9ff12a09 Mon Sep 17 00:00:00 2001 From: Phil Fox Date: Mon, 12 Oct 2020 14:50:32 +0200 Subject: [PATCH] Added "jpeg" as file format to be downloaded --- src/searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/searcher.py b/src/searcher.py index 912cd55..a891322 100644 --- a/src/searcher.py +++ b/src/searcher.py @@ -342,7 +342,7 @@ def extractDirectLink(URL): if not, return False """ - imageTypes = ['jpg','png','mp4','webm','gif'] + imageTypes = ['jpg','jpeg','png','mp4','webm','gif'] if URL[-1] == "/": URL = URL[:-1]