[realbooru] fix download URLs (#2530)
This commit is contained in:
@@ -87,8 +87,8 @@ class GelbooruV02Extractor(booru.BooruExtractor):
|
|||||||
|
|
||||||
def _file_url_realbooru(self, post):
|
def _file_url_realbooru(self, post):
|
||||||
url = post["file_url"]
|
url = post["file_url"]
|
||||||
if url.count("/") == 5:
|
md5 = post["md5"]
|
||||||
md5 = post["md5"]
|
if md5 not in post["preview_url"] or url.count("/") == 5:
|
||||||
url = "{}/images/{}/{}/{}.{}".format(
|
url = "{}/images/{}/{}/{}.{}".format(
|
||||||
self.root, md5[0:2], md5[2:4], md5, url.rpartition(".")[2])
|
self.root, md5[0:2], md5[2:4], md5, url.rpartition(".")[2])
|
||||||
return url
|
return url
|
||||||
|
|||||||
Reference in New Issue
Block a user