Skip to content

Commit

Permalink
Fix dmm scraper actresses (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvlflame committed Sep 20, 2020
1 parent d6401c0 commit 70d5549
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Javinizer/Private/Scraper.Dmm.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ function Get-DmmActress {
process {
$movieActressObject = @()
try {
$movieActress = ($Webrequest.Content | Select-String -Pattern 'performer"><a href="\/digital\/videoa\/-\/list\/=\/article=actress\/id=(\d*)\/">(.*)<\/a>' -AllMatches).Matches
$actressBlock = (($Webrequest.Content -split '<td align="right" valign="top" class="nw">(出演者:|Performers:)<\/td>')[2] -split '<\/td>')[0]
$movieActress = ($actressBlock | Select-String -Pattern '\/article=actress\/id=(\d*)\/">(.*)<\/a>' -AllMatches).Matches
} catch {
return
}
Expand Down

0 comments on commit 70d5549

Please sign in to comment.