Skip to content

Commit

Permalink
Fix japanese actress name in format string (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvlflame committed Dec 24, 2020
1 parent 7d28da8 commit e67b854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Javinizer/Private/Convert-JVString.ps1
Expand Up @@ -89,7 +89,7 @@ function Convert-JVString {

$actressObject = @()
if ($ActressLanguageJa) {
if ($null -ne $Data.Actress.Japanese) {
if ($null -ne $Data.Actress.JapaneseName) {
$actressObject = $Data.Actress.JapaneseName
} elseif ($FirstNameOrder) {
foreach ($actress in $Data.Actress) {
Expand Down

0 comments on commit e67b854

Please sign in to comment.