I have noticed a problem here with the tvguide.com.ini file lately with a recorded show. My wife likes to watch "Days of Our Lives" and it's not displaying the correct episode number.
For instance yesterdays show was S54 E203 but it scraped it as S54 E3. I also noticed it was doing the same at other times as well for instance, S54 E19 was supposed to be S54 E190.
I use a spare laptop that runs OpenMediaVault as my server and TVheadend for my dvr manager. I have included files you might need along with my log file. Another thing I noticed it doesn't like it when the show doesn't have an episode title, geesh.
Thanks,
Michael
on these 2 lines..
index_temp_7.scrub {regex||"SeasonNumber":([1-9]+)||}
index_temp_8.scrub {regex||"EpisodeNumber":"([1-9]+)||}
change
([1-9]+)
to
([1-9]\d*)
explanation..
[1-9]+ in regex means one or more of any number from 1-9
that's why ur always missing the zero's
[1-9]\d* in regex means the first number has to be a number from 1-9(this is used so a value of season/episode number 0 is ignored) followed by any number of number(0-9)
Awesome, Thank You!
I knew it was something in those lines, well at least the one for episodes..