summaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/gelbooru.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/extractor/gelbooru.py')
-rw-r--r--gallery_dl/extractor/gelbooru.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gallery_dl/extractor/gelbooru.py b/gallery_dl/extractor/gelbooru.py
index 37c776e..eb07739 100644
--- a/gallery_dl/extractor/gelbooru.py
+++ b/gallery_dl/extractor/gelbooru.py
@@ -114,11 +114,12 @@ class GelbooruBase():
md5 = post["md5"]
path = "/images/{}/{}/{}.webm".format(md5[0:2], md5[2:4], md5)
post["_fallback"] = GelbooruBase._video_fallback(path)
- url = "https://img3.gelbooru.com" + path
+ url = "https://img4.gelbooru.com" + path
return url
@staticmethod
def _video_fallback(path):
+ yield "https://img3.gelbooru.com" + path
yield "https://img2.gelbooru.com" + path
yield "https://img1.gelbooru.com" + path