1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 11:12:40 +01:00

[bunkr] fix video downloads

This commit is contained in:
Mike Fährmann 2023-06-08 17:21:37 +02:00
parent aad5e6490c
commit df106fb58b
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -71,7 +71,7 @@ class BunkrAlbumExtractor(LolisafeAlbumExtractor):
cdn = None
files = []
append = files.append
headers = {"Referer": self.root.replace("://", "://stream.", 1) + "/"}
headers = {"Referer": self.root + "/"}
pos = page.index('class="grid-images')
for url in text.extract_iter(page, '<a href="', '"', pos):