I've got an odd one here that I cannot figure out. If I load a fresh instance of Filebot, add the following 4 files and just use the default


So I close FileBot and launch a new instance and I try matching it to my custom preset which matches on absolute numbering instead of SxE. That results in it matching all files to the wrong show. (please don't judge me on the preset, I struggled to get it to do what I want, I'm sure it could be done cleaner)
Code: Select all
E:/Renamed/Anime/{ny.replaceAll(/[?.]+$/).replaceAll(/[:]/, ' -').replaceAll(/[\/\\*?"<>|]/)} /Season {episode.special ? '00' : order.airdate.s.pad(2)} /{ny.replaceAll(/[?.]+$/).replaceAll(/[:]/, ' -').replaceAll(/[\/\\*?"<>|]/)} - {episode.special ? 'S00E'+special.pad(2) : order.airdate.s00e00} - {self?.t ? {t.replaceAll(/[?.]+$/).replaceAll(/[:]/, ' -').replaceAll(/[\/\\*?"<>|]/)}:'Episode '+ self.e00} {self?.vs ? " [$vs]":" [WEB-DL]"} {[vf] ? " [$vf]":""} {self.audioLanguages.size() > 1 ? " [Dual-Audio]":""} {[vc] ? " [$vc]":""} [{CRC32}]


So then I try the


If I remove the incorrect show so that the box only contains "All Saints; all saints street" and click the OK button, I get prompted with the "Select the best match" window:

Here's what I get If I click the Skip button. Same as using the default match button:

And here's what I get if I select the show All Saints Street in the list and click the Select button. It's the right show, but wrong season (Should be Season 01):

Now, if I go to the Episodes sidebar tab and search for the show, it finds it correctly, and If I send them to the Rename sidebar tab, it names the files correctly:


So my question is, how can I get FileBot to stop auto matching to the incorrect show and match to the correct Season 01 when using my preset that is set to use absolute episode ordering?