Kodi Community Forum

Full Version: fallback=".." problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using the following code to show the 'Not Available' message when there's no latest items to show and it works fine fine for Movies but not episodes because of the ' - ' separator between the shows title and episode names.
Code:
<label fallback="Not Available">$INFO[Window.Property(LatestEpisode.1.ShowTitle)] - $INFO[Window.Property(LatestEpisode.1.EpisodeNo)]</label>
Shouldn't fallback be based only on the info and not any characters you wish to show?
you could try this:

Code:
<label fallback="Not Available">$INFO[Window.Property(LatestEpisode.1.ShowTitle)]$INFO[Window.Property(LatestEpisode.1.EpisodeNo), - ]</label>
That worked perfectly, many thanks. Big Grin