Kodi Community Forum

Full Version: No episode names in PVR recordings list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am really enjoying using Kodi with Pellucid skin, apart from a small problem with the PVR recordings list for a given programme  where it lists the same programme name on every line, but not the episode name.
I took a look at the skin code, and found an easy fix in MyPVRRecordings.xml

Here is a patch
Code:
--- pellucid/MyPVRRecordings.xml    2019-07-10 16:47:02.967584304 +0100
+++ MyPVRRecordings.xml    2019-07-10 16:46:03.829419554 +0100
@@ -69,7 +69,7 @@
                             <font>itemTitle</font>
                             <textcolor>textActive</textcolor>
                             <shadowcolor></shadowcolor>
-                            <label>$INFO[ListItem.Label]</label>
+                            <label>$INFO[ListItem.Label]$INFO[ListItem.EpisodeName,  - ,]</label>
                         </control>
                         <control type="label">
                             <right>12</right>
@@ -129,7 +129,7 @@
                             <textcolor>textActive</textcolor>
                             <selectedcolor>textActive</selectedcolor>
                             <shadowcolor></shadowcolor>
-                            <label>$INFO[ListItem.Label]</label>
+                            <label>$INFO[ListItem.Label]$INFO[ListItem.EpisodeName,  - ,]</label>
                         </control>
                         <control type="label">
                             <right>12</right>
thanks delboy711, will include in next update.