summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin-Olacsi <138650713+Austin-Olacsi@users.noreply.github.com>2024-11-26 09:02:27 -0700
committerBnyro <bnyro@tutanota.com>2024-11-27 11:08:23 +0100
commit55481a63773494bf917dc71542cc6461a9c4b617 (patch)
tree808bf6f0455ae7841cbc3942b0d75fd07c51740c
parent78f5300830e0e897fd344f9c9022e556aae39fe9 (diff)
downloadsearxng-55481a63773494bf917dc71542cc6461a9c4b617.tar.gz
searxng-55481a63773494bf917dc71542cc6461a9c4b617.zip
[fix] findthatmeme engine URLs have changed
-rw-r--r--searx/engines/findthatmeme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/findthatmeme.py b/searx/engines/findthatmeme.py
index e52996d69..2e7b21611 100644
--- a/searx/engines/findthatmeme.py
+++ b/searx/engines/findthatmeme.py
@@ -35,8 +35,8 @@ def response(resp):
results = []
for item in search_res:
- img = 'https://findthatmeme.us-southeast-1.linodeobjects.com/' + item['image_path']
- thumb = 'https://findthatmeme.us-southeast-1.linodeobjects.com/thumb/' + item.get('thumbnail', '')
+ img = 'https://s3.thehackerblog.com/findthatmeme/' + item['image_path']
+ thumb = 'https://s3.thehackerblog.com/findthatmeme/thumb/' + item.get('thumbnail', '')
date = datetime.strptime(item["updated_at"].split("T")[0], "%Y-%m-%d")
formatted_date = datetime.utcfromtimestamp(date.timestamp())