Currently if the one for regular episodes tries to match a special it makes the season folder "Season 00" and the episode number matches as S00Enull. If I'm using the specials scheme and try to match a regular episode it doesn't pad the season folder with a 0 so I end up with "Season 1" instead of "Season 01"
Code: Select all
Sorted/{n}/Season {s.pad(2)}/{n} - S{s.pad(2)}E{es*.pad(2).join('-E')} - {t} - {vf} {af}
Sorted/{n}/{episode.special ? 'Special' : 'Season '+s}/{n} - {episode.special ? 'S00E'+special.pad(2) : s00e00} - {t} - {vf} {af}
Also I am having some trouble with multi-part episodes. My regular episode scheme above matches two part episodes just fine but anything more than two parts it will only match the first two parts.
Example:
S01E22-E23 will match correctly
S01E24-E25-E26-E27 will only match E24 and E25 and completely skips E26 and E27.