Skip to content

Commit

Permalink
Fix variable typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jvlflame authored Mar 14, 2020
1 parent 4101c93 commit 78fe63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Javinizer/Private/Set-JavMovie.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ function Set-JavMovie {
if ($actress.thumb -ne '') {
$firstName, $lastName = $actress.name -split ' '
if ($null -eq $lastName -or $lastName -eq '') {
$actressFileName = $first + '.jpg'
$actressFileName = $firstName + '.jpg'
} else {
$actressFileName = $firstName + '_' + $lastName + '.jpg'
}
Expand Down

0 comments on commit 78fe63d

Please sign in to comment.