Merge pull request #653 from 1hitsong/fix-album-overview

Check if overview is empty
This commit is contained in:
Jimi 2022-06-12 16:45:10 -06:00 committed by GitHub
commit 3bf45d6f84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,8 +70,8 @@ end sub
' Populate on screen text variables ' Populate on screen text variables
sub setOnScreenTextValues(json) sub setOnScreenTextValues(json)
if isValid(json) if isValid(json)
if isValid(json.overview) if isValid(json.overview) and json.overview <> ""
' Have have overview text ' We have overview text
setFieldTextValue("overview", json.overview) setFieldTextValue("overview", json.overview)
else else
' We don't have overview text ' We don't have overview text