Skip to content

Commit

Permalink
Merge pull request #1865 from cewert/fix-moviedetails-crash2
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert authored Jul 28, 2024
2 parents c030228 + a4ce646 commit d1a2d11
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/movies/MovieDetails.bs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ sub itemContentChanged()
else
tomato = "pkg:/images/rotten.png"
end if
m.top.findNode("criticRatingIcon").uri = tomato
criticRatingIcon = m.top.findNode("criticRatingIcon")
if isValid(criticRatingIcon) then criticRatingIcon.uri = tomato
else
m.infoGroup.removeChild(m.top.findNode("criticRatingGroup"))
end if
Expand Down

0 comments on commit d1a2d11

Please sign in to comment.