Skip to content

Commit

Permalink
fix: false variable on Upload existing
Browse files Browse the repository at this point in the history
  • Loading branch information
fscorrupt committed Sep 13, 2024
1 parent b942bbb commit eca149a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Posterizarr.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[switch]$SyncEmby
)

$CurrentScriptVersion = "1.8.5"
$CurrentScriptVersion = "1.8.6"
$global:HeaderWritten = $false
$ProgressPreference = 'SilentlyContinue'

Expand Down Expand Up @@ -15884,7 +15884,7 @@ else {
if ($global:UploadExistingAssets -eq 'true') {
Write-Entry -Message "Starting Existing Asset Upload..." -Path $global:ScriptRoot\Logs\Scriptlog.log -Color Green -log Info
try {
GetPlexArtwork -Type " $Titletext | $global:FileNaming Artwork." -ArtUrl $Arturl -TempImage $EpisodeImage
GetPlexArtwork -Type "$Titletext Artwork." -ArtUrl $Arturl -TempImage $PosterImage
if ($global:PlexartworkDownloaded -eq 'true'){
Write-Entry -Subtext "Uploading Existing Artwork for: $Titletext" -Path $global:ScriptRoot\Logs\Scriptlog.log -Color White -log Info
$fileContent = [System.IO.File]::ReadAllBytes($PosterImageoriginal)
Expand Down Expand Up @@ -16243,7 +16243,7 @@ else {
if ($global:UploadExistingAssets -eq 'true') {
Write-Entry -Message "Starting Existing Asset Upload..." -Path $global:ScriptRoot\Logs\Scriptlog.log -Color Green -log Info
try {
GetPlexArtwork -Type " $Titletext Artwork." -ArtUrl $Arturl -TempImage $backgroundImage
GetPlexArtwork -Type " $Titletext | Backgound Artwork." -ArtUrl $Arturl -TempImage $backgroundImage
if ($global:PlexartworkDownloaded -eq 'true'){
Write-Entry -Subtext "Uploading Existing Artwork for: $Titletext" -Path $global:ScriptRoot\Logs\Scriptlog.log -Color White -log Info
$fileContent = [System.IO.File]::ReadAllBytes($backgroundImageoriginal)
Expand Down Expand Up @@ -17051,7 +17051,7 @@ else {
if ($global:UploadExistingAssets -eq 'true') {
Write-Entry -Message "Starting Existing Asset Upload..." -Path $global:ScriptRoot\Logs\Scriptlog.log -Color Green -log Info
try {
GetPlexArtwork -Type " $Titletext Artwork." -ArtUrl $Arturl -TempImage $backgroundImage
GetPlexArtwork -Type " $Titletext | Background Artwork." -ArtUrl $Arturl -TempImage $backgroundImage
if ($global:PlexartworkDownloaded -eq 'true'){
Write-Entry -Subtext "Uploading Existing Artwork for: $Titletext" -Path $global:ScriptRoot\Logs\Scriptlog.log -Color White -log Info
$fileContent = [System.IO.File]::ReadAllBytes($backgroundImageoriginal)
Expand Down
2 changes: 1 addition & 1 deletion Release.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.5
1.8.6

0 comments on commit eca149a

Please sign in to comment.