20+ seasons not recognized? (1 Viewer)

psiebe

Portal Pro
March 29, 2007
93
1
52
Home Country
Netherlands Netherlands
I did discover a 'translation' issue with a series in the that ran into the 20+ seasons.

for example:
Taggart - 22x03 Mind Over Matter is not recognized...
if I change the 22 to any number as high as 19, it is properly recognized in the parsing test (and recognized afterwards on a download) however, 20+ does not parse right.

Can I change the regex to see those high numbers somehow?
thanks,
Pat
 

Inker

Retired Team Member
  • Premium Supporter
  • December 6, 2004
    2,055
    318
    Yes, in the regex look for all occurances of something like:
    Code:
    (?<season>[0-1]?\d)

    This allows seasons ranging from 0 - 19. Either replace the [0-1] part with [0-2] or replace it with \d which is the equivalent of saying [0-9] (all digits).

    So in the end, it would look something like so:
    Code:
    (?<season>[0-3]?\d)
    allowing seasons 0 - 39

    Hope it makes sense.
     

    Users who are viewing this thread

    Top Bottom