Merge pull request #653 from 1hitsong/fix-album-overview
Check if overview is empty
This commit is contained in:
commit
3bf45d6f84
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user