Is there way to identify Double episodes?
Posted: 01 Oct 2018, 01:15
While i'm here I have another question of something that I haven't been able to figure out. I have the following code:
Which Separates Full seasons vs. incomplete seasons. however when a season has a double episode.. like S01E01-02. it marks the whole season as Incomplete. though it does name it correctly as both episodes. is there a way to detect that and move those to the Complete seasons folder? (Finished folder in the code)
Thanks,
-Dev
Code: Select all
{model.episode.containsAll(episodelist.findAll{it.season == s && it.episode && it.title}) ? 'H:/Live Action/[Naming]/[Finished]/'+(csv('C:/FileBot Settings/TV/TVGenreFolderBasedOnSeriesName.csv').get(n) ?: genre)+'/' : 'H:/Live Action/[Naming]/[Current Seasons]/'+(csv('C:/FileBot Settings/TV/TVGenreFolderBasedOnSeriesName.csv').get(n) ?: genre)+'/' + '/'}
Thanks,
-Dev