diff options
author | ksooo <3226626+ksooo@users.noreply.github.com> | 2023-08-24 23:05:25 +0200 |
---|---|---|
committer | ksooo <3226626+ksooo@users.noreply.github.com> | 2023-08-25 17:31:59 +0200 |
commit | 31785633f7d3f14db1f4667fb9a83f18f45ac395 (patch) | |
tree | e828437e37a49cab94274198f6af402b46f8b8ee /addons/skin.estuary/xml/Variables.xml | |
parent | 650c196f25ac3fbe3d7bdbcc4aeea3f6135769e4 (diff) |
[Estuary] Use | instead of / for separating unwatched|in progress|total counts to avoid confusion with date format.
Diffstat (limited to 'addons/skin.estuary/xml/Variables.xml')
-rw-r--r-- | addons/skin.estuary/xml/Variables.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml index 89bd4f5de2..7541e834af 100644 --- a/addons/skin.estuary/xml/Variables.xml +++ b/addons/skin.estuary/xml/Variables.xml @@ -278,8 +278,8 @@ <value condition="!String.IsEmpty(ListItem.Art(tvshow.poster))">$INFO[ListItem.Art(tvshow.poster)]</value> </variable> <variable name="WatchedStatusVar"> - <value condition="String.IsEqual(Listitem.DBType,tvshow) | String.IsEqual(Listitem.DBType,season)">$INFO[ListItem.Property(InProgressEpisodes)]$INFO[ListItem.Property(WatchedEpisodes), / ,]$INFO[ListItem.Property(TotalEpisodes), / ,]</value> - <value condition="String.IsEqual(Listitem.DBType,set)">$INFO[ListItem.Property(InProgress)]$INFO[ListItem.Property(Watched), / ,]$INFO[ListItem.Property(Total), / ,]</value> + <value condition="String.IsEqual(Listitem.DBType,tvshow) | String.IsEqual(Listitem.DBType,season)">$INFO[ListItem.Property(InProgressEpisodes)]$INFO[ListItem.Property(WatchedEpisodes),|,]$INFO[ListItem.Property(TotalEpisodes),|,]</value> + <value condition="String.IsEqual(Listitem.DBType,set)">$INFO[ListItem.Property(InProgress)]$INFO[ListItem.Property(Watched),|,]$INFO[ListItem.Property(Total),|,]</value> </variable> <variable name="VideoPlayerForwardRewindVar"> <value condition="Player.Forwarding2x | Player.Rewinding2x">2x</value> |