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
Sometimes a Newgrounds submission contains extra images that are embedded in the description, like this submission that has one extra image: https://www.newgrounds.com/art/view/sailoryon/yon-dream-buster
gallery-dl doesn't have any way of capturing them, as far as I know.
The text was updated successfully, but these errors were encountered:
c5e3971
@mikf It seems there's an edge case where sometimes image embeds start with // but not https:
Sorry, something went wrong.
I fixed it changing line 53 to: yield Message.Url, url.replace("https:", "").replace("//", "https://") , post
yield Message.Url, url.replace("https:", "").replace("//", "https://") , post
[newgrounds] handle embeds without scheme (#1033)
5b844a7
No branches or pull requests
Sometimes a Newgrounds submission contains extra images that are embedded in the description, like this submission that has one extra image: https://www.newgrounds.com/art/view/sailoryon/yon-dream-buster
gallery-dl doesn't have any way of capturing them, as far as I know.
The text was updated successfully, but these errors were encountered: