-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
Javbus screenshot url not recognized for www.javbus.com's domain vs Dmm.co.jp #349
Comments
seeyabye
added a commit
to seeyabye/Javinizer
that referenced
this issue
Feb 15, 2023
…avinizer#349) (javinizer#346) Signed-off-by: Seeyabye <seeyabye91@gmail.com>
seeyabye
added a commit
to seeyabye/Javinizer
that referenced
this issue
Feb 15, 2023
…avinizer#346) Signed-off-by: Seeyabye <seeyabye91@gmail.com>
seeyabye
added a commit
to seeyabye/Javinizer
that referenced
this issue
Feb 15, 2023
…avinizer#346) Signed-off-by: Seeyabye <seeyabye91@gmail.com>
seeyabye
added a commit
to seeyabye/Javinizer
that referenced
this issue
Feb 15, 2023
…avinizer#346) Signed-off-by: Seeyabye <seeyabye91@gmail.com>
seeyabye
added a commit
to seeyabye/Javinizer
that referenced
this issue
Feb 15, 2023
…avinizer#346) Signed-off-by: Seeyabye <seeyabye91@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue:
For javbus scraping, if the screenshots are not hosted on DMM.co.jp, and that javbus is hosting its own, the scraper won't recognize it.
Jvlflame provided a fix:
Add this Private/Scraper.Javbus.ps1
Go To Line 359, add this AFTER 359. Don't alter 359 at all. just add it after.
$screenshotUrl = $screenshoturl | ForEach-Object { if ($_ -notmatch 'http') { 'https://www.javbus.com' + $_ } else { $_ } }
The text was updated successfully, but these errors were encountered: