Skip to content

Commit

Permalink
Adjust model/site regex
Browse files Browse the repository at this point in the history
  • Loading branch information
missionfloyd committed Sep 30, 2024
1 parent 6e67742 commit 3b1c630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gallery_dl/extractor/girlsreleased.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def items(self):
class GirlsreleasedModelExtractor(GirlsreleasedSetExtractor):
"""Extractor for girlsreleased models"""
subcategory = "model"
pattern = BASE_PATTERN + r"/model/(\d+(?:/?.+)?)"
pattern = BASE_PATTERN + r"/model/(\d+/?.*)"
example = "https://girlsreleased.com/model/12345/MODEL"

def _pagination(self):
Expand All @@ -73,5 +73,5 @@ def items(self):
class GirlsreleasedSiteExtractor(GirlsreleasedModelExtractor):
"""Extractor for girlsreleased sites"""
subcategory = "site"
pattern = BASE_PATTERN + r"/site/(.+(?:/model/\d+(?:/?.+)?)?)"
pattern = BASE_PATTERN + r"/site/(.+(?:/model/\d+/?.*)?)"
example = "https://girlsreleased.com/site/SITE"

0 comments on commit 3b1c630

Please sign in to comment.