You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actress Images get downloaded successfully from JavBus
Current Behavior
Actress Images with Japanese characters fail with a message like:
Get-RunspaceData: [...]\PowerShell\Modules\Javinizer\2.5.9\Public\Invoke-JVParallel.ps1:568
Line |
568 | Get-RunspaceData -Wait
| ~~~~~~~~~~~~~~~~~~~~~~
| Exception calling "EndInvoke" with "1" argument(s): "The running command stopped because the
| preference variable "ErrorActionPreference" or common parameter is set to Stop: [n0001] [Set-JVMovie]
| Error occurred when creating actress image files: Exception calling "DownloadFile" with "2"
| argument(s): "Could not find file 'C:\imgs\actress\4l3.jpg'.""
Steps to Reproduce (for bugs)
Option scraper.movie.javbusja": true
Option "sort.download.actressimg": true
e.g. use Javinizer -strict for N0001
The address of for the actress thumb will be "/imgs/actress/4l3.jpg" (while it would normally start with "https://")
The relative path cannot be handled and the download fails
Issue Fix:
In file Scraper.Javbus.ps1 in line 279 changing
ThumbUrl = $thumbUrl
to
ThumbUrl = 'https://www.javbus.com' + $thumbUrl
(analog to the Else case (no Japanese characters) in line 314) fixes the issue.
Your Environment
Module version used: 2.5.9
Operating System and PowerShell version: 7.0.4.0
The text was updated successfully, but these errors were encountered:
Expected Behavior
Actress Images get downloaded successfully from JavBus
Current Behavior
Actress Images with Japanese characters fail with a message like:
Get-RunspaceData: [...]\PowerShell\Modules\Javinizer\2.5.9\Public\Invoke-JVParallel.ps1:568
Line |
568 | Get-RunspaceData -Wait
| ~~~~~~~~~~~~~~~~~~~~~~
| Exception calling "EndInvoke" with "1" argument(s): "The running command stopped because the
| preference variable "ErrorActionPreference" or common parameter is set to Stop: [n0001] [Set-JVMovie]
| Error occurred when creating actress image files: Exception calling "DownloadFile" with "2"
| argument(s): "Could not find file 'C:\imgs\actress\4l3.jpg'.""
Steps to Reproduce (for bugs)
Issue Fix:
In file Scraper.Javbus.ps1 in line 279 changing
ThumbUrl = $thumbUrl
to
ThumbUrl = 'https://www.javbus.com' + $thumbUrl
(analog to the Else case (no Japanese characters) in line 314) fixes the issue.
Your Environment
The text was updated successfully, but these errors were encountered: