We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bunkr now inserts different TLDs into every URL which breaks the extractor.
Currently, we assume that URLs in a bunkr album either
We will need to add a case where the URL in album does not start with / and is not a CDN URL but also matches base pattern
/
The text was updated successfully, but these errors were encountered:
else: domain = domain.replace("cdn", "media-files", 1) url = urlunsplit((scheme, domain, path, query, fragment)) + else: + scheme, domain, path, query, fragment = urlsplit(url) + try: + url = self._extract_file(text.unescape(path)) + except Exception as exc: + self.log.error("%s: %s", exc.__class__.__name__, exc) + continue
Sorry, something went wrong.
[bunkr] fix extraction (#5088, #5151, #5153)
06cb518
- remove legacy code - map legacy domains to bunkr.sk - use input URL domain for newer domains - update tests (some files got slightly modified or deleted)
No branches or pull requests
bunkr now inserts different TLDs into every URL which breaks the extractor.
Currently, we assume that URLs in a bunkr album either
We will need to add a case where the URL in album does not start with
/
and is not a CDN URL but also matches base patternThe text was updated successfully, but these errors were encountered: