diff --git a/LME.JackTor/JackTorInvoke.cs b/LME.JackTor/JackTorInvoke.cs index e665f62..5e5e3a2 100644 --- a/LME.JackTor/JackTorInvoke.cs +++ b/LME.JackTor/JackTorInvoke.cs @@ -334,9 +334,12 @@ namespace LME.JackTor if (!IsCodecAllowed(codec)) continue; - int extractedYear = ExtractYear(searchable); - if (year > 1900 && extractedYear > 1900 && Math.Abs(extractedYear - year) > yearTolerance) - continue; + if (serial != 1) + { + int extractedYear = ExtractYear(searchable); + if (year > 1900 && extractedYear > 1900 && Math.Abs(extractedYear - year) > yearTolerance) + continue; + } int[] seasons = ParseSeasons(searchable); bool serialHint = IsSerialHint(searchable); diff --git a/LME.JackTor/ModInit.cs b/LME.JackTor/ModInit.cs index 8f7cac6..cb5c856 100644 --- a/LME.JackTor/ModInit.cs +++ b/LME.JackTor/ModInit.cs @@ -18,7 +18,7 @@ namespace LME.JackTor { public class ModInit : IModuleLoaded { - public static double Version => 2.1; + public static double Version => 2.2; public static JackTorSettings JackTor;