[bunkr] support 'bunkr:' URL prefix (#6017)

and support 'bunkr.ax' by default
This commit is contained in:
Mike Fährmann
2024-08-14 18:56:47 +02:00
parent 2d55521582
commit 0bbdeaaa50
4 changed files with 23 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ class LolisafeAlbumExtractor(LolisafeExtractor):
def __init__(self, match):
LolisafeExtractor.__init__(self, match)
self.album_id = match.group(match.lastindex)
self.album_id = self.groups[-1]
def _init(self):
domain = self.config("domain")