Skip to content

Commit

Permalink
Push 1.1.9 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jvlflame committed Dec 26, 2019
1 parent 6a9240f commit 98eb22a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.9]
### Fixed
- Additional error with downloading actress images with single actress video

## [1.1.8]
### Fixed
- Fixed single-word actresses appending underscore `_` to filename when downloading actress images
Expand Down
2 changes: 1 addition & 1 deletion src/Javinizer/Javinizer.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Javinizer.psm1'

# Version number of this module.
ModuleVersion = '1.1.8'
ModuleVersion = '1.1.9'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion src/Javinizer/Private/Set-JavMovie.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function Set-JavMovie {
$fixFolderPath = $folderPath.replace('[', '`[').replace(']', '`]')
New-Item -ItemType Directory -Name '.actors' -Path $fixFolderPath -Force:$Force -ErrorAction SilentlyContinue | Out-Null
if ($dataObject.ActressThumbUrl.Count -eq 1) {
if ($dataObject.ActressThumbUrl[$i] -match 'https:\/\/pics\.r18\.com\/mono\/actjpgs\/.*\.jpg') {
if ($dataObject.ActressThumbUrl -match 'https:\/\/pics\.r18\.com\/mono\/actjpgs\/.*\.jpg') {
$first, $second = $dataObject.Actress -split ' '
if ($null -eq $second -or $second -eq '') {
$actressFileName = $first + '.jpg'
Expand Down

0 comments on commit 98eb22a

Please sign in to comment.