1
0
Fork 0
mirror of synced 2024-05-19 19:52:41 +12:00

Imgur webp coverage

update regex to catch _d in webp links from imgur.
This commit is contained in:
Soulsuck24 2022-12-11 14:20:04 -05:00
parent 1bc20f238e
commit 15a9d25a9d
No known key found for this signature in database
GPG key ID: EDBD4E9B4DA565B4
2 changed files with 5 additions and 1 deletions

View file

@ -41,7 +41,7 @@ class Imgur(BaseDownloader):
@staticmethod
def _get_data(link: str) -> dict:
try:
imgur_id = re.match(r".*/(.*?)(\..{0,})?$", link).group(1)
imgur_id = re.match(r".*/(.*?)(_d)?(\..{0,})?$", link).group(1)
gallery = "a/" if re.search(r".*/(.*?)(gallery/|a/)", link) else ""
link = f"https://imgur.com/{gallery}{imgur_id}"
except AttributeError:

View file

@ -170,6 +170,10 @@ def test_imgur_extension_validation_bad(test_extension: str):
"http://i.imgur.com/s9uXxlq.jpg?5.jpg",
("338de3c23ee21af056b3a7c154e2478f",),
),
(
"https://i.imgur.com/2TtN68l_d.webp",
("6569ab9ad9fa68d93f6b408f112dd741",),
),
),
)
def test_find_resources(test_url: str, expected_hashes: list[str]):